:root {
  --ink: #18232d;
  --ink-soft: #4d5965;
  --navy: #15212b;
  --navy-raised: #1d2b36;
  --cream: #f2f4f5;
  --paper: #ffffff;
  --line: #d5dbe0;
  --line-dark: #3a4a56;
  --accent: #245d85;
  --accent-soft: #dce7ef;
  --success: #245d85;
  --danger: #5d6470;
  --shadow: 0 18px 46px rgba(21, 33, 43, 0.08);
  --serif: "Avenir Next", Avenir, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --content: 1160px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: none;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #70a9d2;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--accent);
  border-radius: 4px;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  color: #f1f4f6;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-descriptor {
  display: block;
  margin-top: 3px;
  color: #a7b4bd;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: #c6d0d6;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  color: var(--paper);
  border: 1px solid #52626e;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.nav-cta:hover {
  border-color: var(--accent-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.hero::after {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 700px;
  padding: 104px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.hero .eyebrow {
  color: #9ec3dc;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.7vw, 76px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.01;
}

.hero-copy {
  max-width: 690px;
  margin: 30px 0 0;
  color: #bec8ce;
  font-size: 19px;
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button::after {
  content: "→";
  transition: transform 160ms ease;
}

.button:hover::after {
  transform: translateX(3px);
}

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

.button-primary {
  color: #13202a;
  background: #c6dceb;
  border-color: #c6dceb;
}

.button-primary:hover {
  background: #d8e7f1;
  border-color: #d8e7f1;
}

.button-secondary {
  color: #eef1f2;
  background: transparent;
  border-color: #536572;
}

.button-secondary:hover {
  border-color: #93a6b2;
}

.system-card {
  position: relative;
  padding: 24px;
  background: #1c2a35;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.system-card::before {
  content: none;
}

.system-label {
  margin: 0 0 22px;
  color: #a7b7c1;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-flow {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-flow li {
  position: relative;
  min-height: 62px;
  padding: 13px 16px 13px 52px;
  color: #e4eaed;
  background: #16232d;
  border: 1px solid #3a4a56;
  border-radius: 3px;
}

.system-flow li:not(:last-child)::after {
  position: absolute;
  bottom: -13px;
  left: 25px;
  z-index: 2;
  color: #7f96a5;
  font-size: 15px;
  line-height: 1;
  content: "↓";
}

.flow-index {
  position: absolute;
  top: 15px;
  left: 16px;
  color: #9ec3dc;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
}

.flow-title {
  display: block;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
}

.flow-detail {
  display: block;
  margin-top: 3px;
  color: #91a3ae;
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.35;
}

.system-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: #afbdc5;
  font-family: var(--sans);
  font-size: 11px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #7faecc;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(127, 174, 204, 0.12);
}

.proof-bar {
  color: #cbd4d9;
  background: #192630;
  border-top: 1px solid #34444f;
  border-bottom: 1px solid #34444f;
}

.proof-list {
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid #3a4a56;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.proof-list li:first-child {
  padding-left: 0;
}

.proof-list li:last-child {
  border-right: 0;
}

.proof-list li::before {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: #8fb6cf;
  content: "";
}

.section {
  padding: 112px 0;
}

.section-compact {
  padding: 86px 0;
}

.section-white {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  color: #edf2f3;
  background: var(--navy);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}

.section-intro .eyebrow {
  margin-bottom: 0;
  align-self: start;
  padding-top: 13px;
}

.section-title {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-lede {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-dark .section-lede {
  color: #aebdc6;
}

.section-dark .eyebrow,
.contact-section .eyebrow {
  color: #9ec3dc;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-card {
  min-height: 326px;
  padding: 38px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-number {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.capability-card h3 {
  max-width: 420px;
  margin: 38px 0 15px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.capability-card p {
  max-width: 490px;
  margin: 0;
  color: var(--ink-soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 5px 9px;
  color: #4d5b66;
  background: #e9edf0;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partnership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(520px, 1.13fr);
  gap: 96px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 40px;
}

.commitment-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.commitment {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.commitment-index {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.commitment h3 {
  margin: -3px 0 8px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.commitment p {
  margin: 0;
  color: var(--ink-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.process-step {
  min-height: 252px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9ec3dc;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.process-index::after {
  color: #6f8796;
  content: "→";
  font-size: 14px;
}

.process-step h3 {
  margin: 44px 0 13px;
  color: #f1f4f6;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.process-step p {
  margin: 0;
  color: #a9b8c0;
  font-size: 14px;
}

.reference-stack {
  display: grid;
  gap: 32px;
}

.reference-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reference-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  padding: 42px 46px 36px;
  border-bottom: 1px solid var(--line);
}

.reference-label {
  margin: 0 0 17px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.reference-summary {
  align-self: end;
  margin: 0;
  color: var(--ink-soft);
}

.architecture {
  margin: 0;
  padding: 38px 46px 43px;
  background: #edf1f3;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.architecture-stage {
  position: relative;
  min-height: 110px;
  padding: 17px;
  background: var(--paper);
  border: 1px solid #cbd3d9;
  border-radius: 3px;
}

.architecture-stage:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 2;
  width: 10px;
  height: 10px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 15px;
  content: "→";
  transform: translateY(-50%);
}

.architecture-stage strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
}

.architecture-stage span {
  display: block;
  margin-top: 9px;
  color: #697681;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.55;
}

.architecture figcaption {
  margin-top: 18px;
  color: #56636e;
  font-size: 12px;
}

.reference-foot {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  padding: 34px 46px 40px;
}

.control-title {
  margin: 0 0 16px;
  color: #6c7580;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.control-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.control-list li {
  position: relative;
  padding-left: 17px;
  color: var(--ink-soft);
  font-size: 13px;
}

.control-list li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 800;
}

.exception-note {
  align-self: start;
  padding: 17px 18px;
  color: #334d60;
  background: #e7f0f6;
  border-left: 2px solid var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
}

.reference-disclaimer {
  margin: 22px 0 0;
  color: #697580;
  font-size: 12px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.fit-column {
  padding: 42px 44px;
  background: var(--paper);
}

.fit-column + .fit-column {
  border-left: 1px solid var(--line);
}

.fit-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.fit-column h3::before {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
}

.fit-good h3::before {
  color: var(--success);
  background: #e2edf4;
  content: "✓";
}

.fit-not h3::before {
  color: var(--danger);
  background: #e9ecef;
  content: "×";
}

.fit-column ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-column li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-soft);
}

.fit-column li::before {
  position: absolute;
  left: 0;
  color: #71808b;
  content: "—";
}

.about-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: stretch;
}

.about-copy {
  padding: 64px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.about-copy .section-title {
  font-size: clamp(38px, 4.3vw, 56px);
}

.about-body {
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.about-note {
  margin: 31px 0 0;
  padding-top: 23px;
  color: #6a7580;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 64px;
  color: #eef2f3;
  background: var(--navy-raised);
  border: 1px solid var(--line-dark);
}

.pricing-card::after {
  content: none;
}

.pricing-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.price-signal {
  position: relative;
  z-index: 1;
  margin: 50px 0 21px;
  color: #b7d2e3;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.25;
}

.pricing-card p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #aab9c2;
  font-size: 13px;
}

.contact-section {
  color: #f4f2ed;
  background: var(--navy);
  border-bottom: 1px solid #20384a;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  align-items: end;
}

.contact-section .section-title {
  max-width: 830px;
}

.contact-prompt {
  max-width: 700px;
  margin: 25px 0 0;
  color: #aebdc6;
  font-size: 18px;
}

.contact-link {
  min-width: 238px;
}

.site-footer {
  padding: 34px 0;
  color: #93a4ae;
  background: var(--navy);
  font-size: 12px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-links a {
  text-decoration-color: #4c6170;
  text-underline-offset: 3px;
}

.simple-main {
  min-height: calc(100vh - 154px);
  padding: 90px 0 110px;
}

.simple-page {
  max-width: 810px;
  padding: 58px 62px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.simple-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 68px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.simple-page .lede {
  margin: 25px 0 42px;
  color: var(--ink-soft);
  font-size: 18px;
}

.simple-page h2 {
  margin: 36px 0 9px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.simple-page p {
  color: var(--ink-soft);
}

.updated {
  margin: 15px 0 0;
  color: #77818a;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-code {
  margin: 0 0 15px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 82px 0;
  }

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

  .system-card {
    max-width: 680px;
  }

  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sticky-copy {
    position: static;
  }

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

  .reference-head,
  .reference-foot {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .contact-link {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-descriptor,
  .nav-cta {
    display: none;
  }

  .hero-grid {
    gap: 48px;
    padding: 70px 0 62px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 67px);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .system-card {
    padding: 18px;
  }

  .proof-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 0;
  }

  .proof-list li,
  .proof-list li:first-child {
    min-height: 42px;
    padding: 0 12px;
    border-right: 0;
  }

  .section,
  .section-compact {
    padding: 76px 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 39px;
  }

  .section-intro .eyebrow {
    padding-top: 0;
  }

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

  .capability-grid,
  .process-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
    padding: 30px 26px;
  }

  .capability-card h3 {
    margin-top: 25px;
    font-size: 27px;
  }

  .commitment {
    grid-template-columns: 32px 1fr;
    gap: 13px;
  }

  .process-step {
    min-height: 225px;
  }

  .reference-head,
  .architecture,
  .reference-foot {
    padding-right: 24px;
    padding-left: 24px;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .architecture-stage {
    min-height: 0;
  }

  .architecture-stage:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 50%;
    content: "↓";
    transform: translateX(-50%);
  }

  .control-list {
    grid-template-columns: 1fr;
  }

  .fit-column {
    padding: 33px 27px;
  }

  .fit-column + .fit-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-copy,
  .pricing-card {
    padding: 38px 28px;
  }

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

  .simple-main {
    padding: 55px 0 75px;
  }

  .simple-page {
    padding: 39px 27px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .proof-bar,
  .contact-section,
  .site-footer {
    color: #111;
    background: #fff;
  }

  .nav-links,
  .nav-cta,
  .button-row {
    display: none;
  }

  .section,
  .section-compact {
    padding: 40px 0;
  }
}
