/* ═══════════════════════════════════════════════════════════════════
   PT SYNEX DIGI WARE — Main Stylesheet
   Editorial Split layout · Brand: #F9A03F / #F7D794 / #FEF9EF / #1A1A2E
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design Tokens ─────────────────────────────────────────────────── */
:root {
  --orange : #F9A03F;
  --cream  : #F7D794;
  --bg     : #FEF9EF;
  --accent : #60A5FA;
  --dark   : #1A1A2E;
  --white  : #FFFFFF;
}

/* ── Base ───────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }

/* ── Keyframes ──────────────────────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spin  { to { transform: rotate( 360deg); } }
@keyframes spinr { to { transform: rotate(-360deg); } }
@keyframes pulse { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }

/* ── Animation utility classes ──────────────────────────────────────── */
.anim-spin   { animation: spin   20s linear   infinite; transform-origin: 200px 200px; }
.anim-spinr  { animation: spinr  14s linear   infinite; transform-origin: 200px 200px; }
.anim-pulse  { animation: pulse   4s ease-in-out infinite; }
.anim-pulse2 { animation: pulse   6s ease-in-out infinite; animation-delay: 2s; }
.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

/* ── Scroll-reveal ──────────────────────────────────────────────────── */
.sn-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1),
              transform .75s cubic-bezier(.16,1,.3,1);
}
.sn-reveal.d1 { transition-delay: .10s; }
.sn-reveal.d2 { transition-delay: .20s; }
.sn-reveal.d3 { transition-delay: .30s; }
.sn-reveal.vis { opacity: 1; transform: none; }

/* ── Layout container ───────────────────────────────────────────────── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ── Section label ──────────────────────────────────────────────────── */
.sec-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--dark);
}
.sec-label span {
  width: 2rem;
  height: 1px;
  background: var(--dark);
  display: inline-block;
}
.sec-label.light          { color: var(--orange); }
.sec-label.light span     { background: var(--orange); }

/* ── Decorative section numbers ─────────────────────────────────────── */
.deco {
  position: absolute;
  font-weight: 900;
  color: var(--cream);
  opacity: .4;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ════════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════════ */
#sn-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.5rem 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
#sn-nav.sc {
  background: rgba(254,249,239,.96);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(26,26,46,.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .04em;
  color: var(--dark);
}
.nav-links { display: flex; gap: 2.25rem; }
.nav-link {
  position: relative;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--dark);
  transition: width .3s;
}
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ham span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: .25s;
}

/* Mobile nav overlay */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 49;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .05em;
}
.mob-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
}

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding: 8rem 0 7rem;
  background: var(--bg);
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}
.hero-cols {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-l { width: 58%; }
.hero-r {
  width: 42%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(249,160,63,.4);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-h1 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 1.75rem;
}
.hero-h1 .h-light  { display: block; font-weight: 400; }
.hero-h1 .h-color  { display: block; color: var(--orange); }
.hero-h1 .h-bold   { display: block; }
.hero-sub {
  font-size: 1.125rem;
  color: rgba(26,26,46,.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}
.btn-prim {
  background: var(--orange);
  color: #fff;
  padding: .9rem 2rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-block;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s;
}
.btn-prim:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,160,63,.4);
}
.btn-ghost {
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: .85rem 2rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--dark); color: #fff; }
.btn-ghost svg    { transition: transform .2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,26,46,.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(26,26,46,.6);
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   MARQUEE BAND
   ════════════════════════════════════════════════════════════════════ */
#marquee-band {
  background: var(--orange);
  overflow: hidden;
  padding: .95rem 0;
  border-top: 1px solid rgba(26,26,46,.1);
  border-bottom: 1px solid rgba(26,26,46,.1);
}
.marquee-text {
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark);
}

/* ════════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════════ */
#about {
  padding: 7rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-cols {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.about-l {
  width: 40%;
  min-height: 400px;
  border: 1px solid rgba(26,26,46,.08);
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-r {
  width: 60%;
  padding-top: 3rem;
}
.about-h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}
.about-h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: rgba(26,26,46,.68);
  font-size: 1.0625rem;
  line-height: 1.72;
  margin-bottom: 2rem;
}

/* Capability pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.pillar {
  border: 1px solid rgba(26,26,46,.08);
  padding: 1.25rem;
  background: var(--bg);
}
.pillar-icon  { color: var(--orange); margin-bottom: .375rem; }
.pillar-title { font-size: .875rem; font-weight: 700; margin-bottom: .3rem; }
.pillar-desc  { font-size: .8125rem; color: rgba(26,26,46,.55); line-height: 1.5; }

.hdivider { width: 100%; height: 1px; background: rgba(26,26,46,.1); }

/* ════════════════════════════════════════════════════════════════════
   CAPABILITIES
   ════════════════════════════════════════════════════════════════════ */
#capabilities {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.caps-intro {
  font-size: 1.0625rem;
  color: rgba(26,26,46,.6);
  max-width: 640px;
  line-height: 1.7;
  margin-top: .75rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sn-card {
  background: #fff;
  border-left: 4px solid var(--orange);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s, box-shadow .3s;
}
.sn-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px -12px rgba(26,26,46,.14);
}
.card-icon   { color: var(--orange); margin-bottom: 1.25rem; }
.card-title  { font-weight: 700; line-height: 1.25; margin-bottom: .625rem; }
.card-desc   { color: rgba(26,26,46,.58); font-size: .9375rem; line-height: 1.65; }
.tag-row     { display: flex; flex-wrap: wrap; gap: .375rem; margin-top: 1rem; }
.tag {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,160,63,.1);
  padding: .25rem .625rem;
  border-radius: 2px;
}

/* ════════════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════════════ */
#process {
  padding: 7rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.process-intro {
  font-size: 1.0625rem;
  color: rgba(26,26,46,.6);
  max-width: 560px;
  line-height: 1.7;
  margin-top: .75rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.proc-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: rgba(26,26,46,.12);
  z-index: 0;
}
.proc-step {
  padding: 0 1.5rem 0 0;
  position: relative;
  z-index: 1;
}
.proc-step:last-child { padding-right: 0; }
.proc-icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(26,26,46,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background .3s, border-color .3s;
}
.proc-step:hover .proc-icon { background: var(--orange); border-color: var(--orange); }
.proc-icon svg              { stroke: var(--orange); transition: stroke .3s; }
.proc-step:hover .proc-icon svg { stroke: #fff; }
.proc-num   { font-size: .6875rem; font-weight: 800; letter-spacing: .12em; color: var(--orange); margin-bottom: .5rem; }
.proc-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .625rem; }
.proc-desc  { font-size: .9rem; color: rgba(26,26,46,.6); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════════════
   VALUES
   ════════════════════════════════════════════════════════════════════ */
#values {
  padding: 7rem 0;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vals-bg {
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  pointer-events: none;
  opacity: .04;
}
.vals-cols { display: flex; gap: 5rem; }
.vals-l    { width: 32%; }
.vals-sticky {
  position: sticky;
  top: 7rem;
}
.vals-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.vals-sub {
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.vals-quote {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,.04);
  font-size: .9375rem;
  font-style: italic;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}
.vals-r   { width: 68%; }
.val-hr   { width: 100%; height: 1px; background: rgba(255,255,255,.12); }
.val-row  {
  padding: 2.75rem 1rem;
  margin: 0 -1rem;
  border-radius: 6px;
  transition: background .25s;
  cursor: default;
}
.val-row:hover { background: rgba(255,255,255,.03); }
.val-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.val-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: rgba(249,160,63,.75);
  font-style: italic;
  flex-shrink: 0;
  min-width: 3.5rem;
  transition: color .2s;
}
.val-row:hover .val-num { color: var(--orange); }
.val-name    { font-size: 1.3125rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .5rem; }
.val-desc    { color: rgba(255,255,255,.58); line-height: 1.65; max-width: 520px; }
.val-divider { width: 100%; height: 1px; background: rgba(255,255,255,.12); margin-top: 2.75rem; }

/* ════════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════════ */
#contact {
  padding: 7rem 0;
  background: var(--white);
}
.contact-cols { display: flex; gap: 5rem; }
.contact-l    { width: 45%; }
.contact-h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1.75rem;
}
.contact-h2 .colored { color: var(--orange); }
.contact-lead {
  font-size: 1rem;
  color: rgba(26,26,46,.62);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 1.75rem;
}
.why-list  { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }
.why-item  {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: rgba(26,26,46,.72);
  line-height: 1.5;
}
.why-item svg { flex-shrink: 0; margin-top: 1px; stroke: var(--orange); }
.contact-hr   { width: 100%; height: 1px; background: rgba(26,26,46,.08); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail svg { flex-shrink: 0; margin-top: 3px; stroke: var(--orange); }
.detail-lbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(26,26,46,.4);
  margin-bottom: .3rem;
}
.detail-val { font-size: .9375rem; line-height: 1.7; color: rgba(26,26,46,.75); }
.detail-email {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid rgba(26,26,46,.2);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  display: inline-block;
}
.detail-email:hover { color: var(--orange); border-color: var(--orange); }

/* Contact right — form panel */
.contact-r { width: 55%; }
.bracket {
  position: relative;
  background: var(--bg);
  padding: 2.5rem 3rem;
  border: 1px solid rgba(26,26,46,.06);
}
.bracket::before, .bracket::after, .br-bl, .br-br {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
}
.bracket::before { top: -2px;    left: -2px;  border-top:    2px solid var(--orange); border-left:   2px solid var(--orange); }
.bracket::after  { top: -2px;    right: -2px; border-top:    2px solid var(--orange); border-right:  2px solid var(--orange); }
.br-bl           { bottom: -2px; left: -2px;  border-bottom: 2px solid var(--orange); border-left:   2px solid var(--orange); }
.br-br           { bottom: -2px; right: -2px; border-bottom: 2px solid var(--orange); border-right:  2px solid var(--orange); }

.form-intro {
  font-size: .9375rem;
  color: rgba(26,26,46,.55);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.sn-form   { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(26,26,46,.5);
}
.sn-input {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(26,26,46,.12);
  padding: .875rem 1rem;
  font-family: inherit;
  font-size: .9375rem;
  color: var(--dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.sn-input:focus       { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(249,160,63,.18); }
.sn-input::placeholder { color: rgba(26,26,46,.35); }
textarea.sn-input { resize: none; }

.btn-submit {
  width: 100%;
  background: var(--dark);
  color: #fff;
  padding: 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: inherit;
  transition: background .2s, transform .2s;
}
.btn-submit:hover         { background: rgba(26,26,46,.85); transform: translateY(-1px); }
.btn-submit svg           { transition: transform .2s; }
.btn-submit:hover svg     { transform: translateX(3px); }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */
#footer {
  background: var(--dark);
  border-top: 2px solid var(--orange);
  padding: 3rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  margin-bottom: .75rem;
}
.footer-tagline {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  max-width: 280px;
  line-height: 1.55;
}
.footer-links-wrap { display: flex; gap: 4rem; }
.footer-col-lbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-lnk   { color: rgba(255,255,255,.5); font-size: .875rem; transition: color .2s; }
.footer-lnk:hover { color: #fff; }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8125rem;
}
.footer-copy { color: rgba(255,255,255,.35); }
.footer-sub  { color: rgba(255,255,255,.22); }

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .proc-grid::before { display: none; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .ham        { display: flex; }
  .nav-links  { display: none; }
  .wrap, .nav-inner { padding: 0 1.5rem; }

  #hero { clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%); }

  .hero-cols,
  .about-cols,
  .vals-cols,
  .contact-cols  { flex-direction: column; gap: 2.5rem; }

  .hero-l, .hero-r,
  .about-l, .about-r,
  .vals-l, .vals-r,
  .contact-l, .contact-r { width: 100% !important; }

  .hero-r    { height: 280px; }
  .about-r   { padding-top: 0; }
  .vals-sticky { position: static; }

  .hero-h1 { font-size: clamp(2.8rem, 10vw, 3.8rem) !important; }

  .bento         { grid-template-columns: 1fr 1fr; }
  .pillars       { grid-template-columns: 1fr; }
  .proc-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip   { gap: 1.25rem; }
  .val-inner     { flex-direction: column; gap: .5rem; }

  .footer-top         { flex-direction: column; }
  .footer-links-wrap  { flex-wrap: wrap; gap: 2rem; }
  .footer-bot         { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .bento     { grid-template-columns: 1fr; }
  #about, #capabilities, #process, #values, #contact { padding: 5rem 0; }
  .bracket   { padding: 1.75rem; }
  .form-row  { grid-template-columns: 1fr; }
}
