/* ============================================
   JDMS Technology Consulting — Design Tokens
   Fonts are self-hosted (no external requests to Google
   or any third party) to avoid GDPR/IP-address exposure.
   ============================================ */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../assets/fonts/ibm-plex-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../assets/fonts/ibm-plex-sans-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../assets/fonts/ibm-plex-sans-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../assets/fonts/ibm-plex-sans-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../assets/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../assets/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../assets/fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  /* Color */
  --ink:        #12181A;   /* near-black, primary text/dark sections */
  --ink-soft:   #2A3330;   /* softer heading black on dark bg */
  --signal:     #1E6B42;   /* primary brand green */
  --signal-dim: #164F31;   /* darker green for hover/depth */
  --signal-brt: #3CA463;   /* brighter green for small accents */
  --paper:      #F5F6F3;   /* main background */
  --paper-2:    #ECEEEA;   /* slightly deeper panel bg */
  --tint:       #E7F1EA;   /* pale green section tint */
  --slate:      #5B655F;   /* secondary text */
  --slate-2:    #8A9691;   /* tertiary/caption text */
  --hairline:   #D8DED9;   /* borders/rules */
  --white:      #FFFFFF;

  /* Type */
  --f-display: 'Space Grotesk', sans-serif;
  --f-body:    'IBM Plex Sans', sans-serif;
  --f-mono:    'IBM Plex Mono', monospace;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--signal);
  display: inline-block;
}

h1.display {
  font-size: clamp(2rem, 3.1vw, 2.75rem);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: 680px;
  margin: 20px 0 22px;
}

h2.section-title {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.18;
  margin-bottom: 14px;
}

p.lede {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 620px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--signal);
  color: var(--white);
}
.btn-primary:hover { background: var(--signal-dim); }
.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-ghost.on-dark {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost.on-dark:hover { background: var(--white); color: var(--ink); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 246, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.brand img {
  height: 54px;
  width: auto;
  opacity: 0;
  transform: translateY(-6px);
  animation: headerLogoIn 0.7s ease-out 0.1s forwards;
}
@keyframes headerLogoIn {
  to { opacity: 1; transform: translateY(0); }
}
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: var(--signal);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a.current::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 92px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.nav-open { max-height: 400px; }
  .main-nav a { width: 100%; padding: 16px 32px; border-bottom: 1px solid var(--hairline); }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 480px) {
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 0;
  overflow: hidden;
  position: relative;
}
.hero .wrap { max-width: 880px; }
.hero-copy p.lede { margin: 0 0 34px; max-width: 640px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-pillars {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 0;
}
.hero-pillar {
  font-family: var(--f-mono);
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 20px 32px 20px 0;
  margin-right: 32px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero-with-logo .wrap {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
}
.hero-logo-wrap { display: flex; align-items: center; justify-content: center; }
.hero-logo-anim {
  width: 380px;
  max-width: 100%;
  opacity: 0;
  transform: scale(0.86) translateY(16px);
  animation:
    heroLogoIn 1.15s cubic-bezier(.16,.8,.3,1) 0.2s forwards,
    heroLogoFloat 6s ease-in-out 1.4s infinite;
  filter: drop-shadow(0 20px 40px rgba(18,24,26,0.1));
}
@keyframes heroLogoIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-pillar:not(:last-child) { border-right: 1px solid var(--hairline); }
.hp-index { color: var(--signal); font-size: 0.78rem; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--ink);
  padding: 30px 0;
}
.stats-strip .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat .num {
  font-family: var(--f-mono);
  color: var(--signal-brt);
  font-size: 1.5rem;
  font-weight: 600;
}
.stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.trust-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.trust-bar .trust-line {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--slate-2);
  letter-spacing: 0.03em;
}
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  border: 1px solid var(--hairline);
  color: var(--slate);
  padding: 5px 10px;
  border-radius: 3px;
}

/* ---------- Who we are ---------- */
.who {
  padding: 96px 0;
}
.who .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.who-list { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.who-item {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.who-item:last-child { border-bottom: none; padding-bottom: 0; }
.who-tag {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--signal);
  min-width: 66px;
  padding-top: 3px;
}
.who-item p { color: var(--slate); font-size: 0.98rem; }
.who-item strong { color: var(--ink); display:block; margin-bottom: 2px; font-family: var(--f-display); font-weight: 600;}

/* ---------- Pillars ---------- */
.pillars { padding: 20px 0 100px; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.pillar-card {
  background: var(--paper);
  padding: 40px 34px;
  transition: background 0.2s ease;
}
.pillar-card:hover { background: var(--white); }
.pillar-index {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--signal);
  margin-bottom: 22px;
  display: block;
}
.pillar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.pillar-card p {
  color: var(--slate);
  font-size: 0.94rem;
  margin-bottom: 24px;
}
.pillar-link {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.pillar-card:hover .pillar-link { color: var(--signal); border-color: var(--signal); }

/* ---------- SAP Expertise (spec panel) ---------- */
.expertise {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
}
.expertise .eyebrow { color: var(--signal-brt); }
.expertise .eyebrow::before { background: var(--signal-brt); }
.expertise h2 { color: var(--white); }
.expertise .lede { color: rgba(255,255,255,0.68); }
.expertise-claim {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--white);
  max-width: 760px;
  margin: 8px 0 50px;
  line-height: 1.5;
}
.expertise-claim strong { color: var(--signal-brt); }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.capability {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 18px;
}
.capability h4 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.capability p {
  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
}
.confidence-line {
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--f-mono);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.confidence-line span { color: var(--signal-brt); }

/* ---------- SAP Expert Network ---------- */
.expert-network { padding: 96px 0; }
.region-row {
  display: flex;
  gap: 14px;
  margin: 36px 0 44px;
  flex-wrap: wrap;
}
.region-badge {
  font-family: var(--f-mono);
  font-size: 0.88rem;
  color: var(--ink-soft);
  border: 1px solid var(--hairline);
  padding: 10px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
}
.region-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  display: inline-block;
}
.niche-panel {
  background: var(--ink);
  border-radius: 6px;
  padding: 44px 40px;
}
.niche-head { margin-bottom: 26px; }
.niche-head h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 8px; }
.niche-sub {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.niche-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.niche-tag {
  font-family: var(--f-mono);
  font-size: 0.88rem;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(60,164,99,0.4);
  padding: 10px 18px;
  border-radius: 4px;
}
.niche-tag-more {
  border-style: dashed;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
}
.expert-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ---------- Industries ---------- */
.industries { padding: 96px 0; }
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.industry-card {
  background: var(--tint);
  padding: 36px;
  border-radius: 4px;
  border-left: 3px solid var(--signal);
}
.industry-card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.industry-card ul { display: flex; flex-direction: column; gap: 10px; }
.industry-card li {
  font-size: 0.92rem;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}
.industry-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  background: var(--signal);
  border-radius: 50%;
}
.industry-secondary {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 28px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--slate);
}
.industry-secondary strong { color: var(--ink); }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  background: var(--paper-2);
  padding: 4px 10px;
  border-radius: 3px;
  color: var(--slate);
}

/* ---------- Process ---------- */
.process { padding: 20px 0 100px; }
.process-line {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: var(--hairline);
}
.process-step {
  flex: 1;
  text-align: left;
  padding-right: 24px;
  position: relative;
}
.process-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--signal);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--slate); }

/* ---------- Testimonials ---------- */
.testimonials { padding: 20px 0 100px; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 32px 28px;
  border-radius: 4px;
}
.quote-mark {
  font-family: var(--f-display);
  font-size: 2.2rem;
  color: var(--signal);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.quote-card p.quote-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.quote-attr {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--slate-2);
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}

/* ---------- Dual path ---------- */
.dual-path { padding: 0 0 100px; }
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.dual-card {
  background: var(--paper);
  padding: 48px 40px;
}
.dual-card .eyebrow { margin-bottom: 16px; }
.dual-card h3 { font-size: 1.35rem; margin-bottom: 14px; }
.dual-card p { color: var(--slate); margin-bottom: 26px; font-size: 0.95rem; }

/* ---------- Case study teaser ---------- */
.case-teaser {
  padding: 80px 0;
  background: var(--tint);
}
.case-teaser .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.case-teaser h3 { font-size: 1.3rem; max-width: 640px; margin-bottom: 4px; }
.case-teaser p.case-sub { color: var(--slate); font-size: 0.9rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner .tagline {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 22px;
}
.cta-contact-line {
  font-family: var(--f-mono);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 46px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; max-width: 260px; color: rgba(255,255,255,0.55); }
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--signal-brt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Sticky mini CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .who .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-with-logo .wrap { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-anim { width: 220px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .dual-grid { grid-template-columns: 1fr; }
  .process-line { flex-direction: column; gap: 30px; }
  .process-line::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .case-teaser .wrap { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .niche-panel { padding: 30px 24px; }
  .hero-pillars { flex-direction: column; }
  .hero-pillar { border-right: none !important; border-bottom: 1px solid var(--hairline); margin-right: 0; padding: 16px 0; }
  .hero-pillar:last-child { border-bottom: none; }
  .stats-strip .wrap { flex-direction: column; gap: 18px; }
  .capability-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-bar .wrap { flex-direction: column; align-items: flex-start; }
}
