/*
  seostorms.com -- style.css
  Design: BOLD EDITORIAL BENTO - strong typography + red accent + clean paper white
  Palette: Paper white #FAFAFA + Strong red #DC2626 + Near-black #0A0A0A + Warm paper #F5F0EB
  Fonts: Outfit (headings - geometric rounded) + DM Sans (body - clean contemporary)
  Nav: HORIZONTAL WITH SERVICES DROPDOWN (2-level) + Announcement bar
  Hero: LEFT-HEAVY BENTO GRID - large bold headline + bento cards right
  CSS prefix: st- naming: st-storm-*, st-bento-*, st-pulse-*, st-journal-*, st-ladder-*, st-accord-*
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===================== TOKENS ===================== */
:root {
  --st-white:   #FAFAFA;
  --st-paper:   #F5F0EB;
  --st-paper2:  #EDE8E0;
  --st-red:     #DC2626;
  --st-red2:    #B91C1C;
  --st-redbg:   rgba(220,38,38,.06);
  --st-redge:   rgba(220,38,38,.18);
  --st-black:   #0A0A0A;
  --st-ink:     #111111;
  --st-mid:     #444444;
  --st-dim:     #888888;
  --st-dimmer:  #BBBBBB;
  --st-border:  #E5E5E5;
  --st-border2: #D0D0D0;
  --st-surf:    #1A1A1A;
  --st-surf2:   #2A2A2A;

  --st-max: 1100px;
  --st-r:   4px;
  --st-r2:  12px;
  --st-r3:  24px;

  --st-fh:  'Outfit', system-ui, -apple-system, sans-serif;
  --st-fb:  'DM Sans', system-ui, -apple-system, sans-serif;

  --st-ease:    all 0.22s cubic-bezier(.25,.1,.25,1);
  --st-shadow:  0 1px 8px rgba(0,0,0,.06);
  --st-shadow2: 0 8px 32px rgba(0,0,0,.1);
  --st-shadow3: 0 24px 64px rgba(0,0,0,.14);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--st-white);
  color: var(--st-ink);
  font-family: var(--st-fb);
  font-size: 1rem;
  line-height: 1.72;
  overflow-x: hidden;
  padding-top: calc(36px + 64px); /* announcement + nav */
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
address { font-style: normal; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-family: var(--st-fh); }
h1 {
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.04em;
  font-weight: 900;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
}
h3 { font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 700; }
p { font-size: .9rem; line-height: 1.85; color: var(--st-mid); }

/* ===================== LAYOUT ===================== */
.st-hub  { max-width: var(--st-max); margin: 0 auto; padding: 0 2.5rem; }
.st-slab { padding: 7rem 0; }
.st-slab-sm { padding: 4.5rem 0; }

/* ===================== ANNOUNCEMENT BAR ===================== */
.st-announce {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 36px;
  background: var(--st-red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--st-fb); font-size: .68rem; font-weight: 600;
  color: white; letter-spacing: .06em;
  gap: 1rem;
}
.st-announce a { color: white; text-decoration: underline; opacity: .8; }
.st-announce a:hover { opacity: 1; }

/* ===================== HORIZONTAL 2-LEVEL NAV ===================== */
.st-nav-strip {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 900;
  height: 64px;
  background: var(--st-white);
  border-bottom: 2px solid var(--st-black);
  transition: box-shadow .3s;
}
.st-nav-strip.st-nav-raised { box-shadow: var(--st-shadow2); }
.st-nav-inner {
  max-width: var(--st-max); margin: 0 auto;
  padding: 0 2.5rem; height: 64px;
  display: flex; align-items: center; gap: 0;
}
.st-nav-brand {
  font-family: var(--st-fh); font-size: 1.15rem; font-weight: 900;
  color: var(--st-black); letter-spacing: -.04em;
  display: flex; align-items: center; gap: .35rem; flex-shrink: 0;
}
.st-nav-brand-flash { color: var(--st-red); }
.st-nav-links {
  display: flex; align-items: center; gap: .05rem;
  margin-left: 2.5rem; flex: 1;
}
.st-nav-lk {
  font-family: var(--st-fb); font-size: .88rem; font-weight: 600;
  color: var(--st-mid); padding: .28rem .78rem;
  transition: color .18s;
  position: relative; white-space: nowrap;
}
.st-nav-lk:hover { color: var(--st-black); }
.st-nav-lk.st-nav-current { color: var(--st-red); }
.st-nav-lk.st-nav-current::after { content: ''; position: absolute; bottom: -19px; left: .78rem; right: .78rem; height: 2px; background: var(--st-red); }

/* Services dropdown */
.st-nav-svc { position: relative; }
.st-nav-svc-trig { display: flex; align-items: center; gap: .22rem; cursor: pointer; }
.st-nav-svc-trig svg { transition: transform .2s; }
.st-nav-svc.st-svc-on .st-nav-svc-trig svg { transform: rotate(180deg); }
.st-nav-svc-drop {
  position: absolute; top: calc(100% + 20px); left: -.5rem;
  width: 240px; background: var(--st-white);
  border: 2px solid var(--st-black);
  border-radius: var(--st-r2);
  overflow: hidden; box-shadow: 6px 6px 0 var(--st-black);
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s, transform .2s;
}
.st-nav-svc.st-svc-on .st-nav-svc-drop {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.st-nav-svc-lk {
  display: flex; align-items: center; justify-content: space-between;
  padding: .62rem 1rem; font-family: var(--st-fb); font-size: .82rem;
  color: var(--st-mid); border-bottom: 1px solid var(--st-border);
  transition: background .14s, color .14s;
}
.st-nav-svc-lk:last-child { border-bottom: none; }
.st-nav-svc-lk:hover { background: var(--st-paper); color: var(--st-black); }
.st-nav-svc-lk-tag { font-size: .56rem; color: var(--st-red); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

.st-nav-actions { display: flex; gap: .55rem; margin-left: auto; }
.st-nav-cta {
  font-family: var(--st-fb); font-size: .82rem; font-weight: 700;
  color: var(--st-white); background: var(--st-red);
  padding: .42rem 1.2rem; border: 2px solid var(--st-red);
  transition: background .2s; white-space: nowrap;
}
.st-nav-cta:hover { background: var(--st-red2); border-color: var(--st-red2); }
.st-ham {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 2px solid var(--st-black); color: var(--st-black);
}

/* Mobile drawer */
.st-mob {
  position: fixed; inset: 0;
  background: var(--st-black); z-index: 980;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.st-mob.st-mob-show { transform: translateX(0); }
.st-mob-top { height: 100px; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.st-mob-brand { font-family: var(--st-fh); font-size: 1.1rem; font-weight: 900; color: white; }
.st-mob-brand span { color: var(--st-red); }
.st-mob-x { color: rgba(255,255,255,.5); padding: .5rem; }
.st-mob-lks { flex: 1; padding: 2rem; display: flex; flex-direction: column; overflow-y: auto; }
.st-mob-lk { display: block; font-family: var(--st-fh); font-size: 2.2rem; font-weight: 900; color: rgba(255,255,255,.4); padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .14s; letter-spacing: -.04em; }
.st-mob-lk:last-of-type { border-bottom: none; }
.st-mob-lk:hover { color: white; }
.st-mob-foot { padding: 1.5rem 2rem; }
.st-mob-cta { display: block; text-align: center; background: var(--st-red); color: white; font-family: var(--st-fb); font-size: .84rem; font-weight: 700; padding: .78rem; }

/* ===================== HERO BENTO GRID ===================== */
.st-storm-hero {
  background: var(--st-white);
  min-height: 80vh;
  display: grid; grid-template-columns: 1.1fr .9fr;
  border-bottom: 2px solid var(--st-black);
}
.st-storm-left {
  padding: 6rem 0 5rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 2px solid var(--st-black);
}
.st-storm-kicker {
  display: inline-flex; align-items: center; gap: .38rem;
  font-family: var(--st-fb); font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em; color: var(--st-red);
  margin-bottom: 1.2rem; display: table;
}
.st-storm-kicker::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--st-red); display: inline-block; margin-right: .25rem; }
.st-storm-left h1 { color: var(--st-black); margin-bottom: 1.2rem; }
.st-storm-left h1 .st-hero-red { color: var(--st-red); }
.st-storm-desc {
  font-size: 1rem; max-width: 44ch; line-height: 1.8;
  color: var(--st-mid); margin-bottom: 2.2rem;
}
.st-storm-acts { display: flex; gap: .72rem; flex-wrap: wrap; align-items: center; }

/* Bento right */
.st-bento-right { padding: 3rem 3rem 3rem 3rem; display: flex; flex-direction: column; gap: 0; }
.st-bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--st-black); border: 2px solid var(--st-black); flex: 1; }
.st-bento-cell {
  background: var(--st-white); padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: background .2s;
}
.st-bento-cell:hover { background: var(--st-paper); }
.st-bento-cell.st-bento-red { background: var(--st-red); }
.st-bento-cell.st-bento-red:hover { background: var(--st-red2); }
.st-bento-cell.st-bento-black { background: var(--st-black); }
.st-bento-cell.st-bento-full { grid-column: span 2; }
.st-bento-label { font-family: var(--st-fb); font-size: .55rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--st-dim); margin-bottom: .35rem; }
.st-bento-red .st-bento-label { color: rgba(255,255,255,.6); }
.st-bento-black .st-bento-label { color: rgba(255,255,255,.4); }
.st-bento-val { font-family: var(--st-fh); font-size: 2.2rem; font-weight: 900; color: var(--st-black); letter-spacing: -.04em; line-height: 1; }
.st-bento-red .st-bento-val { color: white; }
.st-bento-black .st-bento-val { color: var(--st-red); }
.st-bento-sub { font-family: var(--st-fb); font-size: .66rem; color: var(--st-dim); margin-top: .18rem; }
.st-bento-red .st-bento-sub { color: rgba(255,255,255,.6); }
.st-bento-black .st-bento-sub { color: rgba(255,255,255,.4); }
.st-bento-quote-text { font-family: var(--st-fb); font-size: .78rem; font-style: italic; color: var(--st-mid); line-height: 1.6; }
.st-bento-quote-who { font-family: var(--st-fb); font-size: .58rem; color: var(--st-dimmer); margin-top: .35rem; }

/* ===================== TICKER ===================== */
.st-pulse-ticker {
  background: var(--st-black);
  overflow: hidden; padding: .68rem 0;
  border-bottom: 2px solid var(--st-red);
}
.st-pulse-row { display: flex; width: max-content; animation: stTickAnim 32s linear infinite; }
.st-pulse-row:hover { animation-play-state: paused; }
.st-pulse-item {
  display: flex; align-items: center; gap: .88rem;
  padding: 0 1.5rem; font-family: var(--st-fh); font-size: .72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.4); white-space: nowrap;
}
.st-pulse-item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--st-red); flex-shrink: 0; }
@keyframes stTickAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== SERVICES ===================== */
.st-grid-services { background: var(--st-paper); }
.st-grid-svc-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--st-border2);
  border: 2px solid var(--st-border2);
  border-radius: var(--st-r2); overflow: hidden;
  margin-top: 3rem;
}
.st-svc-card {
  background: var(--st-white); padding: 2rem;
  display: flex; flex-direction: column; gap: .55rem;
  text-decoration: none; transition: background .2s;
  position: relative; overflow: hidden;
}
.st-svc-card::after {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%;
  height: 3px; background: var(--st-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s;
}
.st-svc-card:hover { background: var(--st-paper); }
.st-svc-card:hover::after { transform: scaleX(1); }
.st-svc-num { font-family: var(--st-fh); font-size: .56rem; font-weight: 900; text-transform: uppercase; letter-spacing: .22em; color: var(--st-red); }
.st-svc-nm  { font-family: var(--st-fh); font-size: 1.12rem; font-weight: 800; color: var(--st-black); }
.st-svc-desc { font-size: .8rem; color: var(--st-mid); line-height: 1.72; flex: 1; }
.st-svc-pr  { font-family: var(--st-fb); font-size: .7rem; font-weight: 700; color: var(--st-red); margin-top: auto; }

/* ===================== CASE STUDIES (FULL DARK) ===================== */
.st-journal-cases { background: var(--st-black); }
.st-journal-header { padding-top: 5rem; max-width: var(--st-max); margin: 0 auto; padding-left: 2.5rem; padding-right: 2.5rem; }
.st-journal-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 5rem 0;
}
.st-journal-row:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.st-journal-img-col { padding-right: 3rem; }
.st-journal-img-col img { width: 100%; height: 280px; object-fit: cover; display: block; border-radius: var(--st-r2); filter: brightness(.5) saturate(.6); transition: filter .4s; }
.st-journal-row:hover .st-journal-img-col img { filter: brightness(.7) saturate(.8); }
.st-journal-bdy { display: flex; flex-direction: column; justify-content: center; padding-left: 2rem; }
.st-journal-tags { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .65rem; }
.st-journal-tag { font-family: var(--st-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--st-red); background: var(--st-redbg); border: 1px solid var(--st-redge); padding: .12rem .44rem; }
.st-journal-type { font-family: var(--st-fb); font-size: .58rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); margin-bottom: .28rem; }
.st-journal-nm { font-family: var(--st-fh); font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: .7rem; line-height: 1.25; }
.st-journal-story { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.82; margin-bottom: 1.25rem; max-width: 44ch; }
.st-journal-result { display: inline-flex; align-items: baseline; gap: .5rem; }
.st-journal-big { font-family: var(--st-fh); font-size: 2.2rem; font-weight: 900; color: var(--st-red); line-height: 1; }
.st-journal-lbl { font-family: var(--st-fb); font-size: .66rem; color: rgba(255,255,255,.4); line-height: 1.4; }

/* ===================== TESTIMONIALS CAROUSEL ===================== */
.st-quote-section { background: var(--st-paper); }
.st-quote-container { position: relative; margin-top: 3.5rem; }
.st-quote-slides { overflow: hidden; }
.st-quote-track { display: flex; transition: transform .4s ease; }
.st-quote-slide {
  flex-shrink: 0; width: 100%;
  padding: 3rem 3.5rem;
  background: var(--st-white);
  border: 2px solid var(--st-black);
  border-radius: var(--st-r2);
  box-shadow: 6px 6px 0 var(--st-black);
  max-width: 780px; margin: 0 auto;
}
.st-quote-stars { display: flex; gap: .2rem; color: var(--st-red); margin-bottom: 1.25rem; }
.st-quote-text { font-family: var(--st-fh); font-size: 1.3rem; font-weight: 600; color: var(--st-black); line-height: 1.5; margin-bottom: 1.25rem; letter-spacing: -.015em; }
.st-quote-who { font-family: var(--st-fb); font-size: .78rem; color: var(--st-mid); }
.st-quote-who strong { color: var(--st-black); font-weight: 700; }
.st-quote-controls { display: flex; gap: .5rem; justify-content: center; margin-top: 1.75rem; }
.st-quote-btn { width: 40px; height: 40px; border: 2px solid var(--st-black); background: var(--st-white); display: flex; align-items: center; justify-content: center; color: var(--st-black); cursor: pointer; transition: var(--st-ease); }
.st-quote-btn:hover { background: var(--st-black); color: var(--st-white); }
.st-quote-dots { display: flex; gap: .38rem; align-items: center; }
.st-quote-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--st-border2); cursor: pointer; transition: background .2s; border: none; }
.st-quote-dot.st-qdot-on { background: var(--st-red); }

/* ===================== PROCESS NUMBERED CARDS ===================== */
.st-ladder-process { background: var(--st-white); }
.st-ladder-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 2px solid var(--st-black); border-radius: var(--st-r2); overflow: hidden; margin-top: 3rem; }
.st-ladder-step { padding: 2rem; border-right: 2px solid var(--st-black); position: relative; }
.st-ladder-step:last-child { border-right: none; }
.st-ladder-n { font-family: var(--st-fh); font-size: 3.5rem; font-weight: 900; color: var(--st-paper2); line-height: 1; margin-bottom: .65rem; }
.st-ladder-dur { font-family: var(--st-fb); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--st-red); margin-bottom: .3rem; }
.st-ladder-h { font-family: var(--st-fh); font-size: 1.08rem; font-weight: 800; color: var(--st-black); margin-bottom: .42rem; }
.st-ladder-p { font-size: .78rem; color: var(--st-mid); line-height: 1.72; }

/* ===================== PRICING STACKED TABLE ===================== */
.st-accord-pricing { background: var(--st-paper); }
.st-pricing-table { border: 2px solid var(--st-black); border-radius: var(--st-r2); overflow: hidden; margin-top: 3rem; box-shadow: 6px 6px 0 var(--st-black); }
.st-pricing-thead {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 2px solid var(--st-black);
}
.st-pricing-th { padding: 1.25rem 1.5rem; font-family: var(--st-fh); font-size: .88rem; font-weight: 800; color: var(--st-black); border-right: 1px solid var(--st-border); }
.st-pricing-th:first-child { background: var(--st-white); }
.st-pricing-th.st-th-feat { background: var(--st-red); color: white; border-right: 1px solid rgba(255,255,255,.2); }
.st-pricing-th:last-child { border-right: none; }
.st-pricing-th-pr { font-family: var(--st-fh); font-size: 1.4rem; font-weight: 900; color: var(--st-black); line-height: 1; display: block; }
.st-pricing-th.st-th-feat .st-pricing-th-pr { color: white; }
.st-pricing-th-per { font-family: var(--st-fb); font-size: .6rem; font-weight: 400; color: var(--st-dim); }
.st-pricing-th.st-th-feat .st-pricing-th-per { color: rgba(255,255,255,.6); }
.st-pricing-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; border-bottom: 1px solid var(--st-border); }
.st-pricing-row:last-child { border-bottom: none; }
.st-pricing-feat-nm { padding: 1rem 1.5rem; font-family: var(--st-fb); font-size: .82rem; color: var(--st-mid); background: var(--st-white); border-right: 1px solid var(--st-border); display: flex; align-items: center; }
.st-pricing-cell { padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--st-border); background: var(--st-paper); }
.st-pricing-cell:last-child { border-right: none; }
.st-pricing-cell.st-pcell-feat { background: var(--st-redbg); border-right: 1px solid var(--st-redge); }
.st-pricing-cell svg { color: var(--st-red); }
.st-pricing-cell .st-pc-no { color: var(--st-dimmer); }
.st-pricing-foot { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; background: var(--st-black); }
.st-pf-cell { padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,.08); }
.st-pf-cell:first-child { justify-content: flex-start; }
.st-pf-cell:last-child { border-right: none; }
.st-pf-cell a { font-family: var(--st-fb); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: white; background: transparent; border: 1.5px solid rgba(255,255,255,.2); padding: .42rem 1rem; transition: var(--st-ease); }
.st-pf-cell a:hover { border-color: var(--st-red); color: var(--st-red); }
.st-pf-cell a.st-pf-feat { background: var(--st-red); border-color: var(--st-red); color: white; }
.st-pf-cell a.st-pf-feat:hover { background: var(--st-red2); }
.st-pf-cell-txt { font-family: var(--st-fb); font-size: .7rem; color: rgba(255,255,255,.3); }

/* ===================== FAQ SINGLE-COLUMN ===================== */
.st-accord-faq { background: var(--st-white); }
.st-accord-list { margin-top: 3rem; border: 2px solid var(--st-black); border-radius: var(--st-r2); overflow: hidden; }
.st-accord-item { border-bottom: 1px solid var(--st-border); }
.st-accord-item:last-child { border-bottom: none; }
.st-accord-item.st-accord-on { border-bottom: 2px solid var(--st-black); }
.st-accord-btn { width: 100%; text-align: left; padding: 1.25rem 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; background: none; }
.st-accord-q { font-family: var(--st-fh); font-size: 1rem; font-weight: 700; color: var(--st-black); text-align: left; flex: 1; }
.st-accord-ic { width: 28px; height: 28px; border: 2px solid var(--st-black); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--st-black); transition: var(--st-ease); }
.st-accord-item.st-accord-on .st-accord-ic { background: var(--st-red); border-color: var(--st-red); color: white; transform: rotate(45deg); }
.st-accord-body { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.st-accord-item.st-accord-on .st-accord-body { max-height: 400px; }
.st-accord-body-inner { padding: 0 1.75rem 1.25rem; font-size: .86rem; color: var(--st-mid); line-height: 1.88; }

/* ===================== CTA EDITORIAL SPLIT ===================== */
.st-bolt-cta {
  background: var(--st-black);
  position: relative; overflow: hidden;
}
.st-bolt-inner {
  max-width: var(--st-max); margin: 0 auto; padding: 6rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.st-bolt-h { font-family: var(--st-fh); font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 900; color: white; line-height: .95; letter-spacing: -.04em; margin-bottom: .7rem; }
.st-bolt-h .st-bolt-red { color: var(--st-red); }
.st-bolt-p { font-size: .9rem; color: rgba(255,255,255,.5); max-width: 44ch; line-height: 1.85; margin-bottom: 2rem; }
.st-bolt-acts { display: flex; gap: .65rem; flex-wrap: wrap; }
.st-bolt-form { background: var(--st-surf); border: 1px solid rgba(255,255,255,.1); border-radius: var(--st-r2); padding: 2rem; }
.st-bolt-form-h { font-family: var(--st-fh); font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: .3rem; }
.st-bolt-form-sub { font-size: .76rem; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.st-bf-g { margin-bottom: .6rem; }
.st-bf-in { width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: .6rem .88rem; color: white; font-size: .86rem; font-family: var(--st-fb); transition: border-color .2s; }
.st-bf-in:focus { outline: none; border-color: var(--st-red); }
.st-bf-btn { width: 100%; background: var(--st-red); color: white; font-family: var(--st-fb); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .64rem; border: none; cursor: pointer; transition: background .2s; }
.st-bf-btn:hover { background: var(--st-red2); }

/* ===================== BUTTONS ===================== */
.st-btn-red {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--st-fb); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: white; background: var(--st-red);
  padding: .72rem 1.8rem; border: 2px solid var(--st-red);
  transition: background .2s; white-space: nowrap; text-decoration: none; border: none; cursor: pointer;
}
.st-btn-red:hover { background: var(--st-red2); }
.st-btn-black {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--st-fb); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: white; background: var(--st-black);
  padding: .72rem 1.8rem;
  transition: background .2s; white-space: nowrap; text-decoration: none;
}
.st-btn-black:hover { background: var(--st-surf); }
.st-btn-outline {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--st-fb); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--st-black); background: transparent;
  padding: .7rem 1.75rem; border: 2px solid var(--st-black);
  transition: var(--st-ease); white-space: nowrap; text-decoration: none;
}
.st-btn-outline:hover { background: var(--st-black); color: white; }
.st-btn-outline-white {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--st-fb); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.7); background: transparent;
  padding: .7rem 1.75rem; border: 2px solid rgba(255,255,255,.2);
  transition: var(--st-ease); white-space: nowrap; text-decoration: none;
}
.st-btn-outline-white:hover { border-color: white; color: white; }

/* ===================== INNER PAGE HEADER ===================== */
.st-crown {
  background: var(--st-paper);
  padding: 5.5rem 0 4rem;
  text-align: center;
  border-bottom: 2px solid var(--st-black);
}
.st-crown-tag { font-family: var(--st-fb); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--st-red); display: block; margin-bottom: .6rem; }
.st-crown h1 { color: var(--st-black); max-width: 22ch; margin: 0 auto .55rem; text-align: center; }
.st-crown-sub { font-family: var(--st-fb); font-size: .9rem; color: var(--st-mid); max-width: 52ch; margin: 0 auto; line-height: 1.88; }

/* ===================== SERVICE PAGE ===================== */
.st-svc-layout { max-width: var(--st-max); margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 258px; gap: 4rem; align-items: start; }
.st-svc-body h2 { font-family: var(--st-fh); font-size: 1.28rem; font-weight: 800; color: var(--st-red); margin: 2.2rem 0 .55rem; }
.st-svc-body p { margin-bottom: .9rem; }
.st-svc-inc-list { display: flex; flex-direction: column; gap: .38rem; margin-bottom: 1.5rem; }
.st-svc-inc-li { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--st-fb); font-size: .82rem; color: var(--st-mid); }
.st-svc-inc-li svg { flex-shrink: 0; color: var(--st-red); margin-top: .12rem; }
.st-note-del { background: var(--st-redbg); border-left: 2px solid var(--st-red); padding: .75rem 1rem; margin-bottom: .75rem; }
.st-note-del p { font-size: .82rem; color: var(--st-mid); margin: 0; }
.st-note-warn { background: var(--st-paper); border: 1px solid var(--st-border); padding: .75rem 1rem; font-size: .78rem; color: var(--st-mid); }
.st-svc-aside { position: sticky; top: 110px; }
.st-aside-box { background: var(--st-black); border-radius: var(--st-r2); overflow: hidden; }
.st-aside-img img { width: 100%; height: 110px; object-fit: cover; display: block; filter: brightness(.5) saturate(.6); }
.st-aside-bdy { padding: 1.15rem; }
.st-aside-nm { font-family: var(--st-fh); font-size: .86rem; font-weight: 800; color: white; margin-bottom: .12rem; }
.st-aside-pr { font-family: var(--st-fh); font-size: 2rem; font-weight: 900; color: var(--st-red); line-height: 1; letter-spacing: -.03em; }
.st-aside-per { font-family: var(--st-fb); font-size: .52rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.25); margin-bottom: .82rem; }
.st-aside-acts { display: flex; flex-direction: column; gap: .38rem; }

/* ===================== BUILDER ===================== */
.st-forge-layout { max-width: var(--st-max); margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 268px; gap: 3.5rem; align-items: start; }
.st-forge-step { margin-bottom: 2.5rem; }
.st-forge-lbl { display: block; font-family: var(--st-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--st-red); margin-bottom: .78rem; }
.st-pick-rows { display: flex; flex-direction: column; gap: .38rem; }
.st-pick-row { background: var(--st-paper); border: 2px solid var(--st-border); padding: .75rem 1rem; display: flex; align-items: center; gap: .65rem; cursor: pointer; transition: var(--st-ease); user-select: none; }
.st-pick-row:hover { border-color: var(--st-border2); }
.st-pick-row.st-row-on { border-color: var(--st-red); background: var(--st-redbg); }
.st-pick-pr-lab { font-family: var(--st-fh); font-size: .58rem; font-weight: 900; color: var(--st-red); flex-shrink: 0; min-width: 3.5rem; }
.st-pick-nm { font-family: var(--st-fb); font-size: .8rem; color: var(--st-mid); flex: 1; }
.st-pick-row.st-row-on .st-pick-nm { color: var(--st-black); font-weight: 600; }
.st-pick-sub { font-size: .6rem; color: var(--st-dimmer); }
.st-pick-chk { width: 16px; height: 16px; border: 2px solid var(--st-border2); flex-shrink: 0; background: white; transition: var(--st-ease); }
.st-pick-row.st-row-on .st-pick-chk { background: var(--st-red); border-color: var(--st-red); }
.st-adn-chips { display: grid; grid-template-columns: 1fr 1fr; gap: .38rem; }
.st-adn-chip { background: var(--st-paper); border: 2px solid var(--st-border); padding: .65rem .85rem; cursor: pointer; transition: var(--st-ease); user-select: none; }
.st-adn-chip:hover { border-color: var(--st-border2); }
.st-adn-chip.st-chip-on { border-color: var(--st-red); background: var(--st-redbg); }
.st-adn-nm { font-family: var(--st-fb); font-size: .76rem; color: var(--st-mid); }
.st-adn-chip.st-chip-on .st-adn-nm { color: var(--st-black); font-weight: 600; }
.st-adn-pr { font-size: .62rem; color: var(--st-dimmer); margin-top: .18rem; }
.st-adn-chip.st-chip-on .st-adn-pr { color: var(--st-red); }
.st-hrs-box { background: var(--st-paper); border: 2px solid var(--st-border); padding: .88rem 1rem; }
.st-hrs-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.st-hrs-lbl { font-family: var(--st-fb); font-size: .8rem; color: var(--st-mid); }
.st-hrs-val { font-family: var(--st-fh); font-size: 1.5rem; font-weight: 900; color: var(--st-red); letter-spacing: -.03em; }
.st-hrs-slide { -webkit-appearance: none; width: 100%; height: 3px; background: var(--st-border); cursor: pointer; }
.st-hrs-slide::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; background: var(--st-red); cursor: pointer; }

/* Cart */
.st-cart { background: var(--st-black); border-radius: var(--st-r2); overflow: hidden; position: sticky; top: 112px; }
.st-cart-hd { background: var(--st-red); padding: .78rem 1.15rem; }
.st-cart-hl { font-family: var(--st-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.6); }
.st-cart-body { padding: .88rem 1.15rem; min-height: 52px; }
.st-cart-empty { font-family: var(--st-fb); font-size: .72rem; color: rgba(255,255,255,.25); font-style: italic; }
.st-cart-line { display: flex; justify-content: space-between; gap: .6rem; font-family: var(--st-fb); font-size: .72rem; margin-bottom: .38rem; }
.st-cart-lnm { color: rgba(255,255,255,.45); }
.st-cart-lpr { font-weight: 700; color: white; }
.st-cart-foot { border-top: 1px solid rgba(255,255,255,.08); padding: .88rem 1.15rem; }
.st-cart-tot { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: .82rem; }
.st-cart-tot-l { font-family: var(--st-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); }
.st-cart-tot-v { font-family: var(--st-fh); font-size: 2rem; font-weight: 900; color: var(--st-red); letter-spacing: -.03em; }
.st-cart-go { display: block; width: 100%; text-align: center; background: var(--st-red); color: white; font-family: var(--st-fb); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .68rem; border: none; cursor: pointer; transition: background .2s; }
.st-cart-go:hover:not(:disabled) { background: var(--st-red2); }
.st-cart-go:disabled { opacity: .2; cursor: not-allowed; }

/* ===================== CHECKOUT ===================== */
.st-ink-layout { max-width: 860px; margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 256px; gap: 3.5rem; align-items: start; }
.st-fg { margin-bottom: .82rem; }
.st-fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: .82rem; }
.st-fl { display: block; font-family: var(--st-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--st-dim); margin-bottom: .3rem; }
.st-fi { width: 100%; background: var(--st-paper); border: 2px solid var(--st-border); padding: .62rem .88rem; color: var(--st-black); font-size: .86rem; font-family: var(--st-fb); transition: border-color .2s; }
.st-fi:focus { outline: none; border-color: var(--st-black); }
.st-agree { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--st-fb); font-size: .76rem; color: var(--st-mid); line-height: 1.6; margin: 1rem 0; }
.st-agree input { margin-top: .15rem; accent-color: var(--st-red); }
.st-agree a { color: var(--st-red); }
.st-co-side { background: var(--st-black); border-radius: var(--st-r2); overflow: hidden; position: sticky; top: 112px; }
.st-co-side-hd { background: var(--st-red); padding: .72rem 1.05rem; }
.st-co-side-hl { font-family: var(--st-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); }
.st-co-side-body { padding: .88rem 1.05rem; }
.st-co-line { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--st-fb); font-size: .74rem; margin-bottom: .38rem; }
.st-co-lnm { color: rgba(255,255,255,.4); }
.st-co-lpr { font-weight: 700; color: white; }
.st-co-div { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: .6rem 0; }
.st-co-tot-row { display: flex; justify-content: space-between; align-items: flex-end; }
.st-co-tot-l { font-family: var(--st-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); }
.st-co-tot-v { font-family: var(--st-fh); font-size: 2rem; font-weight: 900; color: var(--st-red); letter-spacing: -.03em; }

/* ===================== LEGAL ===================== */
.st-legal-doc { max-width: 780px; margin: 0 auto; padding: 5rem 2.5rem; }
.st-legal-doc h2 { font-family: var(--st-fh); font-size: 1.35rem; font-weight: 800; color: var(--st-red); margin: 2.75rem 0 .6rem; }
.st-legal-doc h3 { font-family: var(--st-fh); font-size: 1rem; font-weight: 700; color: var(--st-black); margin: 1.35rem 0 .3rem; }
.st-legal-doc p { margin-bottom: .9rem; font-size: .86rem; }
.st-legal-doc ul { padding-left: 1.2rem; margin: .3rem 0 .9rem; display: flex; flex-direction: column; gap: .3rem; }
.st-legal-doc li { font-size: .86rem; list-style: disc; color: var(--st-mid); line-height: 1.7; }
.st-legal-doc a { color: var(--st-red); }
.st-legal-doc address { font-style: normal; background: var(--st-redbg); border-left: 2px solid var(--st-red); padding: .9rem 1.2rem; font-family: var(--st-fb); font-size: .84rem; line-height: 1.9; color: var(--st-mid); margin: .9rem 0; }
.st-legal-doc table { width: 100%; border-collapse: collapse; font-size: .8rem; margin: .8rem 0 1.1rem; }
.st-legal-doc th { background: var(--st-black); color: white; padding: .5rem .88rem; text-align: left; font-weight: 700; font-size: .6rem; text-transform: uppercase; letter-spacing: .06em; font-family: var(--st-fb); }
.st-legal-doc td { padding: .5rem .88rem; border-bottom: 1px solid var(--st-border); color: var(--st-mid); }
.st-legal-eff { display: inline-block; font-family: var(--st-fb); font-size: .72rem; color: var(--st-dim); background: var(--st-paper); border: 1px solid var(--st-border); padding: .3rem .75rem; margin-bottom: 1.5rem; }

/* ===================== RESULT PAGES ===================== */
.st-result { min-height: 72vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem 2.5rem; }
.st-result-inner { max-width: 460px; }

/* ===================== SERVICES GRID PAGE ===================== */
.st-svc-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--st-border2); border: 2px solid var(--st-border2); border-radius: var(--st-r2); overflow: hidden; }
.st-svc-page-card { background: var(--st-white); padding: 2rem; display: flex; flex-direction: column; gap: .55rem; text-decoration: none; transition: background .2s; position: relative; overflow: hidden; }
.st-svc-page-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--st-red); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.st-svc-page-card:hover { background: var(--st-paper); }
.st-svc-page-card:hover::before { transform: scaleX(1); }
.st-svc-page-num { font-family: var(--st-fh); font-size: .56rem; font-weight: 900; text-transform: uppercase; letter-spacing: .22em; color: var(--st-red); }
.st-svc-page-nm { font-family: var(--st-fh); font-size: 1.12rem; font-weight: 800; color: var(--st-black); }
.st-svc-page-desc { font-size: .8rem; color: var(--st-mid); line-height: 1.72; }
.st-svc-page-pr { font-family: var(--st-fb); font-size: .7rem; font-weight: 700; color: var(--st-red); margin-top: auto; }

/* ===================== COOKIE + CHAT ===================== */
.st-ck { position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 2px solid var(--st-black); z-index: 9999; padding: .88rem 2rem; display: none; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.st-ck p { font-family: var(--st-fb); font-size: .76rem; color: var(--st-mid); margin: 0; }
.st-ck a { color: var(--st-red); }
.st-ck-btns { display: flex; gap: .42rem; flex-shrink: 0; }
.st-ck-yes { background: var(--st-red); color: white; font-family: var(--st-fb); font-size: .72rem; font-weight: 700; padding: .32rem .92rem; border: none; cursor: pointer; }
.st-ck-no { font-family: var(--st-fb); font-size: .72rem; color: var(--st-mid); padding: .32rem .92rem; border: 2px solid var(--st-border2); background: none; cursor: pointer; }

/* Chat */
.st-chat-fab { position: fixed; bottom: 4.8rem; right: 1.5rem; z-index: 9990; width: 48px; height: 48px; background: var(--st-red); color: white; display: flex; align-items: center; justify-content: center; box-shadow: 4px 4px 0 var(--st-black); cursor: pointer; border: none; transition: var(--st-ease); }
.st-chat-fab:hover { background: var(--st-red2); }
.st-chatbox { position: fixed; bottom: 7rem; right: 1.5rem; z-index: 9989; width: 272px; background: white; border: 2px solid var(--st-black); border-radius: var(--st-r2); overflow: hidden; box-shadow: 6px 6px 0 var(--st-black); transform: translateY(8px) scale(.97); opacity: 0; pointer-events: none; transition: opacity .2s, transform .22s; }
.st-chatbox.st-chat-vis { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.st-chat-hd { background: var(--st-black); padding: .82rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.st-chat-ttl { font-family: var(--st-fh); font-size: .9rem; font-weight: 800; color: white; }
.st-chat-st { font-family: var(--st-fb); font-size: .58rem; color: rgba(255,255,255,.35); }
.st-chat-xb { color: rgba(255,255,255,.4); background: none; border: none; cursor: pointer; }
.st-chat-bd { padding: .88rem; }
.st-chat-done { display: none; text-align: center; padding: .82rem; font-family: var(--st-fb); font-size: .76rem; color: var(--st-red); font-weight: 700; }
.st-chat-inp { width: 100%; background: var(--st-paper); border: 1px solid var(--st-border); padding: .42rem .7rem; color: var(--st-black); font-size: .76rem; margin-bottom: .38rem; resize: none; font-family: var(--st-fb); transition: border-color .2s; }
.st-chat-inp:focus { outline: none; border-color: var(--st-red); }
.st-chat-send { width: 100%; background: var(--st-red); color: white; font-family: var(--st-fb); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .42rem; border: none; cursor: pointer; }

/* ===================== ANIMATIONS ===================== */
.st-appear { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.st-appear.st-vis { opacity: 1; transform: translateY(0); }
.st-appear-l { opacity: 0; transform: translateX(-18px); transition: opacity .52s ease, transform .52s ease; }
.st-appear-l.st-vis { opacity: 1; transform: translateX(0); }
.st-appear-r { opacity: 0; transform: translateX(18px); transition: opacity .52s ease, transform .52s ease; }
.st-appear-r.st-vis { opacity: 1; transform: translateX(0); }

.st-tag-red { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--st-fb); font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--st-red); background: var(--st-redbg); border: 1px solid var(--st-redge); padding: .28rem .72rem; margin-bottom: .65rem; display: table; }

/* ===================== FOOTER ===================== */
.st-base { background: var(--st-paper); border-top: 2px solid var(--st-black); }
.st-base-body { max-width: var(--st-max); margin: 0 auto; padding: 5rem 2.5rem 2.5rem; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; }
.st-base-brand { font-family: var(--st-fh); font-size: 1.15rem; font-weight: 900; color: var(--st-black); letter-spacing: -.04em; margin-bottom: .3rem; }
.st-base-brand span { color: var(--st-red); }
.st-base-tag { font-family: var(--st-fb); font-size: .7rem; color: var(--st-mid); margin-bottom: 1.25rem; max-width: 26ch; line-height: 1.7; }
.st-base-soc { display: flex; gap: .38rem; }
.st-base-soc a { width: 32px; height: 32px; background: var(--st-black); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: var(--st-ease); }
.st-base-soc a:hover { color: var(--st-red); }
.st-base-col-h { font-family: var(--st-fb); font-size: .52rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--st-dimmer); margin-bottom: .88rem; }
.st-base-lks { display: flex; flex-direction: column; gap: .42rem; }
.st-base-lks a { font-family: var(--st-fb); font-size: .74rem; color: var(--st-mid); transition: color .16s; }
.st-base-lks a:hover { color: var(--st-black); }
.st-base-ct { display: flex; flex-direction: column; gap: .5rem; }
.st-base-ct a { font-family: var(--st-fb); font-size: .72rem; color: var(--st-mid); display: flex; align-items: flex-start; gap: .4rem; transition: color .16s; line-height: 1.6; }
.st-base-ct a:hover { color: var(--st-black); }
.st-base-ct svg { flex-shrink: 0; color: var(--st-red); opacity: .7; margin-top: .06rem; }
.st-base-foot { border-top: 2px solid var(--st-black); max-width: var(--st-max); margin: 0 auto; padding: 1.2rem 2.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.st-base-copy { font-family: var(--st-fb); font-size: .6rem; color: var(--st-mid); }
.st-base-disc { font-family: var(--st-fb); font-size: .6rem; color: var(--st-dimmer); }
.st-base-legal { display: flex; gap: 1.25rem; }
.st-base-legal a { font-family: var(--st-fb); font-size: .6rem; color: var(--st-mid); transition: color .16s; }
.st-base-legal a:hover { color: var(--st-black); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .st-nav-links, .st-nav-actions { display: none; }
  .st-ham { display: flex; }
  .st-storm-hero { grid-template-columns: 1fr; }
  .st-storm-left { border-right: none; border-bottom: 2px solid var(--st-black); }
  .st-bento-right { padding: 2rem 0 2rem; }
  .st-grid-svc-cards { grid-template-columns: 1fr 1fr; }
  .st-journal-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .st-journal-img-col { padding-right: 0; }
  .st-journal-bdy { padding-left: 0; }
  .st-ladder-row { grid-template-columns: 1fr 1fr; }
  .st-ladder-step:nth-child(2), .st-ladder-step:nth-child(4) { border-right: none; }
  .st-pricing-table { overflow-x: auto; }
  .st-bolt-inner { grid-template-columns: 1fr; gap: 3rem; }
  .st-base-body { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .st-svc-layout, .st-forge-layout, .st-ink-layout { grid-template-columns: 1fr; }
  .st-svc-page-grid { grid-template-columns: 1fr 1fr; }
  .st-adn-chips { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .st-hub { padding: 0 1.25rem; }
  .st-slab { padding: 4rem 0; }
  .st-grid-svc-cards { grid-template-columns: 1fr; }
  .st-ladder-row { grid-template-columns: 1fr; }
  .st-ladder-step { border-right: none; border-bottom: 1px solid var(--st-border); }
  .st-base-body { grid-template-columns: 1fr; }
  .st-base-legal { display: none; }
  .st-fg2 { grid-template-columns: 1fr; }
  .st-ck { flex-direction: column; align-items: flex-start; }
  .st-svc-page-grid { grid-template-columns: 1fr; }
  .st-bento-grid { grid-template-columns: 1fr; }
  .st-bento-cell.st-bento-full { grid-column: span 1; }
}
