/*
Theme Name: Sarolta Theme
Theme URI: https://sarolta.com
Description: Sarolta Technologies — concept-h design system. Child of Hello Elementor.
Author: Sarolta Technologies
Template: hello-elementor
Version: 1.0.0
*/

/* ═══════════════════════════════════════════════════════════════════════════
   SAROLTA DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Palette ── */
  --st-cream:     #FAF5EB;
  --st-cream2:    #F0E8D2;
  --st-cream3:    #E8DFC8;
  --st-blue:      #0078C8;
  --st-blue-d:    #005FA8;
  --st-blue-l:    #EAF5FB;
  --st-amber:     #C8820A;
  --st-amber-l:   #F5D060;
  --st-sage:      #3BA878;
  --st-rose:      #E07A5F;
  --st-lavender:  #8580CF;
  --st-teal:      #2E9E9A;
  --st-coral:     #C88010;
  --st-navy:      #0D2040;
  --st-navy-m:    #162C52;
  --st-navy-l:    #1E3864;
  --st-sage-dk:   #1A3328;
  --st-sage-m:    #243D30;
  --st-warm:      #7A6E60;
  --st-warm-l:    #A09488;

  /* ── Gradient ── */
  --st-grad-blue: linear-gradient(135deg, #0B3D91 0%, #0078C8 55%, #11B5EA 100%);

  /* ── Typography ── */
  --st-ff-serif:  'Fraunces', Georgia, serif;
  --st-ff-sans:   'Bricolage Grotesque', system-ui, sans-serif;
  --st-ff-mono:   'Space Mono', 'Courier New', monospace;

  /* ── Spacing scale ── */
  --st-sp-xs:  8px;
  --st-sp-sm:  16px;
  --st-sp-md:  32px;
  --st-sp-lg:  56px;
  --st-sp-xl:  80px;
  --st-sp-2xl: 120px;

  /* ── Radius ── */
  --st-r-sm:  8px;
  --st-r-md:  16px;
  --st-r-lg:  24px;
  --st-r-xl:  40px;
  --st-r-pill: 100px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--st-ff-sans) !important;
  background-color: var(--st-cream) !important;
  color: var(--st-navy) !important;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Override hello-elementor body defaults */
.elementor-kit-5 {
  --e-global-color-primary: var(--st-blue);
  --e-global-color-secondary: var(--st-navy);
  --e-global-color-text: var(--st-navy);
  --e-global-color-accent: var(--st-amber);
}

h1, h2, h3, h4, h5 {
  font-family: var(--st-ff-serif) !important;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

a {
  color: var(--st-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--st-blue-d);
}

/* Remove Elementor default widget margin */
.elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */

.st-eyebrow {
  font-family: var(--st-ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--st-blue);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.st-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.st-eyebrow--white {
  color: rgba(255,255,255,0.45);
}
.st-eyebrow--white::before {
  background: rgba(255,255,255,0.25);
}

.st-eyebrow--amber {
  color: var(--st-amber);
}

.st-h1 {
  font-family: var(--st-ff-serif);
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--st-navy);
}

.st-h1 em,
.st-h2 em,
.st-h3 em {
  font-style: italic;
  color: var(--st-blue);
}

.st-h1--white { color: white; }
.st-h1--white em { color: var(--st-amber-l); }

.st-h2 {
  font-family: var(--st-ff-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.st-h2--white { color: white; }
.st-h2--white em { color: var(--st-amber-l); font-style: normal; }

.st-h3 {
  font-family: var(--st-ff-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.st-body {
  font-family: var(--st-ff-sans);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--st-warm);
}

.st-body--white {
  color: rgba(255,255,255,0.6);
}

.st-body--navy {
  color: var(--st-navy);
}

.st-body--lg {
  font-size: 17px;
  line-height: 1.8;
}

.st-mono {
  font-family: var(--st-ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.st-label {
  font-family: var(--st-ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.st-label--blue { color: #5BBEE0; }
.st-label--sage { color: #6FD4A8; }
.st-label--rose { color: #F0A88E; }
.st-label--amber { color: #E8C860; }
.st-label--lavender { color: #B0ACEC; }
.st-label--muted { color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--st-ff-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--st-r-pill);
  transition: background 0.2s, transform 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}

.st-btn--primary {
  background: var(--st-blue);
  color: white;
  padding: 14px 36px;
}
.st-btn--primary:hover {
  background: var(--st-blue-d);
  color: white;
  transform: translateY(-2px);
}

.st-btn--navy {
  background: var(--st-navy);
  color: var(--st-cream);
  padding: 16px 40px;
}
.st-btn--navy:hover {
  background: var(--st-navy-m);
  color: var(--st-cream);
  transform: translateY(-2px);
}

.st-btn--ghost {
  background: transparent;
  color: var(--st-navy);
  padding: 14px 0;
}
.st-btn--ghost::after {
  content: '↗';
  color: var(--st-blue);
  font-size: 16px;
  transition: transform 0.2s;
}
.st-btn--ghost:hover { color: var(--st-blue); }
.st-btn--ghost:hover::after { transform: translate(2px, -2px); }

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION (Theme Builder Header)
   ═══════════════════════════════════════════════════════════════════════════ */

.st-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.st-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.st-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.st-nav-links li { list-style: none; }

.st-nav-links a {
  font-family: var(--st-ff-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--st-warm);
  text-decoration: none;
  transition: color 0.2s;
}

.st-nav-links a:hover {
  color: var(--st-blue);
}

.st-nav-pill {
  background: var(--st-blue);
  color: white !important;
  font-family: var(--st-ff-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 28px;
  border-radius: var(--st-r-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.st-nav-pill:hover {
  background: var(--st-blue-d);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

/* stat row */
.st-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--st-cream2);
  padding-top: var(--st-md, 32px);
  gap: 0;
}

.st-stat {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--st-cream2);
}
.st-stat:last-child { border-right: none; padding-right: 0; }
.st-stat + .st-stat { padding-left: 40px; }

.st-stat-num {
  font-family: var(--st-ff-serif);
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--st-blue);
  display: block;
  margin-bottom: 8px;
}

.st-stat-label {
  font-family: var(--st-ff-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--st-warm);
  display: block;
}

/* hero tag (mono label) */
.st-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--st-ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--st-blue);
  margin-bottom: 32px;
}
.st-hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--st-amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ECOSYSTEM BLOB CLUSTER (hero right column)
   ═══════════════════════════════════════════════════════════════════════════ */

.st-eco-wrap {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.st-eco-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.st-eco-hub {
  position: absolute;
  width: 230px; height: 230px;
  background: var(--st-grad-blue);
  border-radius: 8px;
  animation: st-hub-float 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 4px 8px 28px rgba(0,13,40,0.38), inset 0 1px 0 rgba(255,255,255,0.15);
}

.st-eco-hub-name {
  font-family: var(--st-ff-serif);
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  color: white;
  text-align: center;
  line-height: 1.1;
}

.st-eco-hub-sub {
  font-family: var(--st-ff-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-align: center;
}

.st-eco-sat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: transform 0.3s;
}
.st-eco-sat:hover { transform: scale(1.08) !important; z-index: 6; }

.st-eco-sat-blob {
  width: 100%; height: 100%;
  position: absolute;
  top: 0; left: 0;
  border-radius: 8px;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.18);
}

.st-eco-sat-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 12px;
}

.st-eco-sat-name {
  font-family: var(--st-ff-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
}

.st-eco-sat-tag {
  font-family: var(--st-ff-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
}

/* Satellite positions */
.st-eco-sat.s1 { width: 148px; height: 148px; top: 2%; right: 4%; }
.st-eco-sat.s1 .st-eco-sat-blob { background: var(--st-amber-l); }
.st-eco-sat.s1 .st-eco-sat-name,
.st-eco-sat.s1 .st-eco-sat-tag { color: var(--st-navy); }

.st-eco-sat.s2 { width: 132px; height: 132px; bottom: 4%; right: 8%; }
.st-eco-sat.s2 .st-eco-sat-blob { background: var(--st-rose); }
.st-eco-sat.s2 .st-eco-sat-name,
.st-eco-sat.s2 .st-eco-sat-tag { color: white; }

.st-eco-sat.s3 { width: 120px; height: 120px; bottom: 10%; left: 4%; }
.st-eco-sat.s3 .st-eco-sat-blob { background: var(--st-lavender); }
.st-eco-sat.s3 .st-eco-sat-name,
.st-eco-sat.s3 .st-eco-sat-tag { color: white; }

.st-eco-sat.s4 { width: 126px; height: 126px; top: 6%; left: 6%; }
.st-eco-sat.s4 .st-eco-sat-blob { background: var(--st-sage); }
.st-eco-sat.s4 .st-eco-sat-name,
.st-eco-sat.s4 .st-eco-sat-tag { color: white; }

/* Factory float animations */
@keyframes st-hub-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%       { transform: translate(-50%, -50%) translateY(-7px); }
}

/* ecosystem detail box */
.st-eco-detail {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  border: 1px solid var(--st-cream2);
  box-shadow: 0 4px 24px rgba(0,120,200,0.1);
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.2s;
  z-index: 10;
}

.st-eco-detail.is-active {
  box-shadow: 0 4px 32px rgba(0,120,200,0.18);
}

.st-eco-detail-name {
  font-family: var(--st-ff-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--st-navy);
  margin-bottom: 4px;
  min-height: 22px;
}

.st-eco-detail-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--st-warm);
  font-weight: 300;
  min-height: 40px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ORGANIC SEPARATORS (wave SVG dividers)
   ═══════════════════════════════════════════════════════════════════════════ */

.st-sep {
  line-height: 0;
  display: block;
}

.st-sep svg {
  display: block;
  width: 100%;
}

/* Separator background contexts */
.st-sep--amber-bg  { background: var(--st-coral); }
.st-sep--blue-bg   { background: var(--st-grad-blue); }
.st-sep--cream-bg  { background: var(--st-cream); }
.st-sep--navy-bg   { background: var(--st-navy); }

/* ═══════════════════════════════════════════════════════════════════════════
   STATEMENT STRIP
   ═══════════════════════════════════════════════════════════════════════════ */

.st-statement-strip {
  background: var(--st-coral);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
}

.st-statement-text {
  font-family: var(--st-ff-serif);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--st-navy);
}

.st-statement-text strong {
  font-style: normal;
  color: white;
}

.st-statement-deco {
  font-family: var(--st-ff-serif);
  font-size: 240px;
  font-weight: 900;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
  margin-right: -40px;
  pointer-events: none;
}

.st-statement-check {
  font-size: 32px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PIPELINE SECTION (blue gradient bg)
   ═══════════════════════════════════════════════════════════════════════════ */

.st-pipeline-section {
  background: var(--st-grad-blue);
}

/* SVG pipeline interactivity */
.st-pipe-svg-wrap {
  overflow-x: auto;
}

.st-pipe-card-wrap {
  background: var(--st-cream);
}

.st-pipe-svg-card {
  background: white;
  border-radius: 20px;
  overflow-x: auto;
  position: relative;
}

.st-pipe-svg-card svg {
  width: 100%;
  min-width: 900px;
}

/* Pipeline stage interactivity */
.st-pipe-stage {
  cursor: pointer;
  pointer-events: bounding-box;
}

.st-pipe-stage > .st-s-rect {
  transition: fill 0.15s, stroke 0.15s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.09));
}

.st-pipe-stage.stage-spec:hover  > .st-s-rect { fill: rgba(0,120,200,0.18) !important; stroke: #2795C3 !important; stroke-width: 2 !important; }
.st-pipe-stage.stage-red:hover   > .st-s-rect { fill: rgba(224,122,95,0.15) !important;  stroke: #E07A5F !important; stroke-width: 2 !important; }
.st-pipe-stage.stage-green:hover > .st-s-rect { fill: rgba(59,168,120,0.15) !important;  stroke: #3BA878 !important; stroke-width: 2 !important; }
.st-pipe-stage.stage-ld:hover    > .st-s-rect { fill: rgba(133,128,207,0.15) !important; stroke: #8580CF !important; stroke-width: 2 !important; }
.st-pipe-stage.stage-deploy:hover > .st-s-rect { fill: rgba(0,120,200,0.18) !important; stroke: #2795C3 !important; stroke-width: 2 !important; }
.st-pipe-stage.stage-gate:hover  > .st-g-rect { fill: rgba(200,130,10,0.22) !important; stroke-width: 2 !important; }

/* marching ants on arrows */
.st-pipe-arrow {
  stroke-dasharray: 8 4;
  animation: st-march-ants 1.1s linear infinite;
}

@keyframes st-march-ants {
  to { stroke-dashoffset: -24; }
}

/* pipeline detail panel */
.st-pdp {
  background: var(--st-cream);
  border-radius: 16px;
  border: 1px solid var(--st-cream2);
  transition: border-color 0.2s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 28px;
  align-items: center;
}

.st-pdp.is-active {
  border-color: var(--st-blue);
  border-left-width: 3px;
  background: var(--st-white);
  box-shadow: 0 4px 20px rgba(0,120,200,0.08);
}

.st-pdp-phase {
  font-family: var(--st-ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--st-blue);
  grid-column: 1;
  grid-row: 1;
  white-space: nowrap;
}

.st-pdp-title {
  font-family: var(--st-ff-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--st-navy);
  line-height: 1.1;
  grid-column: 2;
  grid-row: 1;
}

.st-pdp-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(13,32,64,0.55);
  font-weight: 300;
  grid-column: 2;
  grid-row: 2;
}

.st-pdp-hint {
  grid-column: 1 / -1;
  font-family: var(--st-ff-mono);
  font-size: 10px;
  color: rgba(13,32,64,0.25);
  letter-spacing: 0.1em;
}

/* principle cards below pipeline */
.st-pipe-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--st-cream2);
  border-top: 1px solid var(--st-cream2);
}

.st-pipe-card {
  background: var(--st-cream);
}

.st-pc-num {
  font-family: var(--st-ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--st-blue);
  margin-bottom: 16px;
  display: block;
}

.st-pc-title {
  font-family: var(--st-ff-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--st-navy);
  margin-bottom: 12px;
  display: block;
}

.st-pc-body {
  font-size: 14px;
  line-height: 1.72;
  font-weight: 300;
  color: rgba(13,32,64,0.55);
}

/* mobile pipeline timeline */
.st-pipe-mobile { display: none; }

.st-pmf-phase { margin-bottom: 20px; }

.st-pmf-label {
  font-family: var(--st-ff-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--st-r-pill);
  display: inline-flex;
  margin-bottom: 12px;
  font-weight: 700;
}

.st-pmf-phase[data-phase="spec"]   .st-pmf-label { background: rgba(39,149,195,0.3);  color: #7ADCF5; }
.st-pmf-phase[data-phase="red"]    .st-pmf-label { background: rgba(220,80,50,0.3);   color: #F5A08A; }
.st-pmf-phase[data-phase="green"]  .st-pmf-label { background: rgba(0,155,80,0.3);    color: #7ADCB0; }
.st-pmf-phase[data-phase="ld"]     .st-pmf-label { background: rgba(90,30,200,0.3);   color: #C8B8FF; }
.st-pmf-phase[data-phase="deploy"] .st-pmf-label { background: rgba(39,149,195,0.3);  color: #7ADCF5; }

.st-pmf-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,0.12);
}

.st-pmf-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border: 1px solid rgba(255,255,255,0.06);
}
.st-pmf-step:hover,
.st-pmf-step.is-active { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.2); }

.st-pmf-step-num {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--st-ff-mono);
  font-size: 10px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}

.st-pmf-step-num.phase-spec   { background: rgba(39,149,195,0.45); border: 1px solid rgba(39,149,195,0.7); }
.st-pmf-step-num.phase-red    { background: rgba(196,70,40,0.45);  border: 1px solid rgba(196,70,40,0.7); }
.st-pmf-step-num.phase-green  { background: rgba(0,140,75,0.45);   border: 1px solid rgba(0,155,80,0.7); }
.st-pmf-step-num.phase-ld     { background: rgba(61,0,168,0.45);   border: 1px solid rgba(90,30,200,0.7); }
.st-pmf-step-num.phase-deploy { background: rgba(39,149,195,0.45); border: 1px solid rgba(39,149,195,0.7); }
.st-pmf-step-num.phase-input  { background: var(--st-blue); }
.st-pmf-step-num.phase-done   { background: rgba(39,149,195,0.7); border: 1px solid #7ADCF5; }

.st-pmf-step-title {
  font-family: var(--st-ff-serif);
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
  line-height: 1.2;
  display: block;
}

.st-pmf-step-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  font-weight: 300;
  line-height: 1.4;
  display: block;
}

.st-pmf-gate {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin: 4px 0;
  font-family: var(--st-ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5D060;
  border-radius: 8px;
  background: rgba(200,130,10,0.12);
}
.st-pmf-gate::before { content: '◆'; font-size: 9px; flex-shrink: 0; }
.st-pmf-gate.phase-ld { color: #C8B8FF; background: rgba(90,30,200,0.12); }

/* ═══════════════════════════════════════════════════════════════════════════
   DOMAIN CARDS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.st-dom-card {
  border-radius: var(--st-r-lg);
  overflow: hidden;
}

.st-dom-card-head {
  padding: 32px 28px 24px;
  color: white;
}

.st-dom-card-head--blue     { background: var(--st-blue); }
.st-dom-card-head--lavender { background: var(--st-lavender); }
.st-dom-card-head--rose     { background: var(--st-rose); }
.st-dom-card-head--sage     { background: var(--st-sage); }

.st-dom-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.st-dom-title {
  font-family: var(--st-ff-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  display: block;
}

.st-dom-subtitle {
  font-family: var(--st-ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  display: block;
}

.st-dom-card-body {
  background: white;
  padding: 24px 28px;
  border: 1px solid var(--st-cream2);
  border-top: none;
  border-radius: 0 0 var(--st-r-lg) var(--st-r-lg);
}

.st-dom-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.st-dom-step {
  font-family: var(--st-ff-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--st-r-pill);
}

.st-dom-step.step-spec  { background: rgba(39,149,195,0.12); color: var(--st-blue); }
.st-dom-step.step-red   { background: rgba(224,122,95,0.14); color: var(--st-rose); }
.st-dom-step.step-green { background: rgba(59,168,120,0.14); color: #2C9060; }
.st-dom-step.step-ship  { background: rgba(200,130,10,0.12); color: var(--st-amber); }

.st-dom-arrow { color: #CCC; font-size: 12px; }

.st-dom-body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--st-warm);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS SECTION (blue gradient bg)
   ═══════════════════════════════════════════════════════════════════════════ */

.st-products-section {
  background: var(--st-grad-blue);
}

.st-prod-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.st-prod-card {
  background: var(--st-navy);
  border-radius: var(--st-r-lg);
  border: 1px solid rgba(255,255,255,0.06);
  border-top-width: 3px;
  transition: background 0.25s, transform 0.25s;
}
.st-prod-card:hover {
  background: var(--st-navy-m);
  transform: translateY(-4px);
}

.st-prod-card.pc-big  { grid-column: span 7; }
.st-prod-card.pc-med  { grid-column: span 5; }
.st-prod-card.pc-sm   { grid-column: span 4; }

/* per-product accent borders */
.st-prod-card.pc-df { border-top-color: #0078C8; }
.st-prod-card.pc-lw { border-top-color: #3BA878; }
.st-prod-card.pc-cs { border-top-color: #E07A5F; }
.st-prod-card.pc-pv { border-top-color: #E8B830; }
.st-prod-card.pc-rl { border-top-color: #8580CF; }

.st-prod-cat { margin-bottom: 12px; display: block; }

.st-prod-name {
  font-family: var(--st-ff-serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 12px;
  line-height: 1.1;
  display: block;
}

.st-prod-card.pc-big .st-prod-name { font-size: 44px; margin-bottom: 18px; }

.st-prod-desc {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.st-prod-card.pc-big .st-prod-desc { font-size: 15px; }

.st-prod-quote {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 24px;
  font-family: var(--st-ff-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}

.st-prod-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--st-ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s;
}
.st-prod-link:hover { gap: 10px; }

.st-prod-card.pc-df .st-prod-link { color: #5BBEE0; }
.st-prod-card.pc-lw .st-prod-link { color: #6FD4A8; }
.st-prod-card.pc-cs .st-prod-link { color: #F0A88E; }
.st-prod-card.pc-pv .st-prod-link { color: #E8C860; }
.st-prod-card.pc-rl .st-prod-link { color: #B0ACEC; }

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.st-cta-section {
  background: var(--st-amber-l);
  position: relative;
  overflow: hidden;
}

.st-cta-deco {
  position: absolute;
  font-family: var(--st-ff-serif);
  font-style: italic;
  font-weight: 900;
  font-size: 360px;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  bottom: -80px;
  right: -20px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}

.st-cta-h2 {
  font-family: var(--st-ff-serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--st-navy);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER (Theme Builder)
   ═══════════════════════════════════════════════════════════════════════════ */

.st-footer {
  background: var(--st-navy);
}

.st-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.st-f-logo img {
  display: block;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.st-f-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.st-f-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.st-f-links a:hover { color: white; }

.st-f-copy {
  font-family: var(--st-ff-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGE HERO (product, service, approach pages)
   ═══════════════════════════════════════════════════════════════════════════ */

.st-inner-hero {
  background: var(--st-grad-blue);
}

.st-inner-hero-eyebrow {
  font-family: var(--st-ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.st-inner-hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* product accent colors for inner hero eyebrows */
.st-hero-df .st-inner-hero-eyebrow { color: #5BBEE0; }
.st-hero-lw .st-inner-hero-eyebrow { color: #6FD4A8; }
.st-hero-cs .st-inner-hero-eyebrow { color: #F0A88E; }
.st-hero-pv .st-inner-hero-eyebrow { color: #E8C860; }
.st-hero-rl .st-inner-hero-eyebrow { color: #B0ACEC; }

/* ═══════════════════════════════════════════════════════════════════════════
   APPROACH PAGE — METHODOLOGY STEPS
   ═══════════════════════════════════════════════════════════════════════════ */

.st-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.st-step-num {
  font-family: var(--st-ff-serif);
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  color: var(--st-cream2);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: right;
  margin-top: -8px;
}

.st-step-content {}

.st-step-title {
  font-family: var(--st-ff-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--st-navy);
  margin-bottom: 10px;
  display: block;
}

.st-step-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--st-warm);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INSIGHT CARDS (blog listing)
   ═══════════════════════════════════════════════════════════════════════════ */

.st-insight-card {
  border-radius: var(--st-r-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--st-cream2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.st-insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(39,149,195,0.12);
}

.st-insight-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.st-insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.st-insight-card:hover .st-insight-thumb img {
  transform: scale(1.04);
}

.st-insight-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.st-insight-cat {
  font-family: var(--st-ff-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--st-blue);
  margin-bottom: 12px;
  display: block;
}

.st-insight-title {
  font-family: var(--st-ff-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--st-navy);
  margin-bottom: 12px;
  flex: 1;
  display: block;
}

.st-insight-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--st-warm);
  font-weight: 300;
  margin-bottom: 20px;
}

.st-insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--st-ff-mono);
  font-size: 10px;
  color: var(--st-warm-l);
  border-top: 1px solid var(--st-cream2);
  padding-top: 16px;
}

.st-insight-read {
  color: var(--st-blue);
  font-weight: 700;
  text-decoration: none;
}
.st-insight-read:hover { color: var(--st-blue-d); }

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG POST SINGLE
   ═══════════════════════════════════════════════════════════════════════════ */

.st-post-hero {
  background: var(--st-navy);
}

.st-post-body {
  max-width: 720px;
  margin: 0 auto;
}

.st-post-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--st-warm);
  font-weight: 300;
  margin-bottom: 24px;
}

.st-post-body h2 {
  font-family: var(--st-ff-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--st-navy);
  margin: 48px 0 16px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.st-post-body h3 {
  font-family: var(--st-ff-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--st-navy);
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}

.st-post-body ul,
.st-post-body ol {
  padding-left: 20px;
  margin-bottom: 24px;
}

.st-post-body li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--st-warm);
  margin-bottom: 8px;
}

.st-post-body blockquote {
  border-left: 3px solid var(--st-blue);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--st-blue-l);
  border-radius: 0 var(--st-r-md) var(--st-r-md) 0;
  font-family: var(--st-ff-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--st-navy);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.st-contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 16px;
}

.st-contact-form input[type="text"],
.st-contact-form input[type="email"],
.st-contact-form select,
.st-contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: white;
  border: 1px solid var(--st-cream2);
  border-radius: var(--st-r-sm);
  font-family: var(--st-ff-sans);
  font-size: 15px;
  color: var(--st-navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.st-contact-form input:focus,
.st-contact-form select:focus,
.st-contact-form textarea:focus {
  border-color: var(--st-blue);
  box-shadow: 0 0 0 3px rgba(0,120,200,0.1);
}

.st-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.st-contact-form input[type="submit"] {
  background: var(--st-blue);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: var(--st-r-pill);
  font-family: var(--st-ff-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.st-contact-form input[type="submit"]:hover {
  background: var(--st-blue-d);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.st-text-center { text-align: center; }
.st-text-right  { text-align: right; }

.st-color-blue    { color: var(--st-blue) !important; }
.st-color-amber   { color: var(--st-amber) !important; }
.st-color-amber-l { color: var(--st-amber-l) !important; }
.st-color-navy    { color: var(--st-navy) !important; }
.st-color-warm    { color: var(--st-warm) !important; }
.st-color-white   { color: white !important; }
.st-color-muted   { color: rgba(255,255,255,0.5) !important; }
.st-color-sage    { color: var(--st-sage) !important; }
.st-color-rose    { color: var(--st-rose) !important; }
.st-color-lavender { color: var(--st-lavender) !important; }

.st-fw-300 { font-weight: 300; }
.st-fw-400 { font-weight: 400; }
.st-fw-700 { font-weight: 700; }
.st-fw-900 { font-weight: 900; }

.st-serif { font-family: var(--st-ff-serif) !important; }
.st-mono  { font-family: var(--st-ff-mono) !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   ELEMENTOR OVERRIDES (targeted, not inline)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Sticky header background */
.elementor-sticky--active {
  background: rgba(250,245,235,0.97) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 1px 0 var(--st-cream2) !important;
}

/* Remove default Elementor heading bottom margin in text contexts */
.elementor-widget-heading .elementor-heading-title {
  line-height: inherit;
}

/* Ensure full-width images in widget containers */
.elementor-widget-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 1024px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .st-stats-row { grid-template-columns: repeat(2, 1fr); }
  .st-stat:nth-child(2) { border-right: none; }
  .st-stat:nth-child(3) { border-right: 1px solid var(--st-cream2); }

  .st-pipe-cards { grid-template-columns: 1fr; }

  .st-prod-grid { gap: 14px; }
  .st-prod-card.pc-big { grid-column: span 12; }
  .st-prod-card.pc-med { grid-column: span 12; }
  .st-prod-card.pc-sm  { grid-column: span 6; }

  .st-eco-wrap { height: 440px; }

  .st-cta-deco { font-size: 240px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 767px)
   ═══════════════════════════════════════════════════════════════════════════ */

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

  .st-stats-row { grid-template-columns: repeat(2, 1fr); }
  .st-stat { padding-right: 20px; }
  .st-stat + .st-stat { padding-left: 20px; }
  .st-stat:nth-child(2) { border-right: none; }
  .st-stat:nth-child(3) { border-right: 1px solid var(--st-cream2); }
  .st-stat-num { font-size: 36px; }

  .st-eco-wrap { height: 380px; }
  .st-eco-hub { width: 170px; height: 170px; }
  .st-eco-hub-name { font-size: 17px; }
  .st-eco-sat.s1 { width: 110px; height: 110px; }
  .st-eco-sat.s2 { width: 100px; height: 100px; }
  .st-eco-sat.s3 { width: 92px; height: 92px; }
  .st-eco-sat.s4 { width: 96px; height: 96px; }

  .st-statement-deco { display: none; }

  .st-pipe-mobile { display: block !important; }
  .st-pipe-desktop { display: none !important; }

  .st-pdp {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .st-pdp-phase,
  .st-pdp-title,
  .st-pdp-desc { grid-column: 1; grid-row: auto; }

  .st-pipe-cards { grid-template-columns: 1fr; }

  .st-prod-card.pc-big,
  .st-prod-card.pc-med,
  .st-prod-card.pc-sm { grid-column: span 12; }
  .st-prod-card.pc-big .st-prod-name { font-size: 34px; }

  .st-cta-deco { font-size: 180px; }

  .st-footer-wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
  .st-f-links { gap: 16px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .st-eco-hub,
  .st-eco-sat-blob,
  .st-pipe-arrow { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGE COMPONENTS (approach, product, service pages)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Inner hero overrides — cream bg not gradient */
#st-inner-hero {
  background: var(--st-cream) !important;
}

/* Hero subtitle */
.st-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--st-warm);
  max-width: 680px;
}

/* Hero button group */
.st-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.st-btn--primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  background: var(--st-blue);
  color: white;
  border-radius: var(--st-r-pill);
  font-family: var(--st-ff-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.st-btn--primary:hover { background: var(--st-blue-d); color: white; }

.st-btn--ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1.5px solid var(--st-cream2);
  color: var(--st-navy);
  border-radius: var(--st-r-pill);
  font-family: var(--st-ff-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.st-btn--ghost:hover { border-color: var(--st-blue); color: var(--st-blue); }

/* Eyebrow variants */
.st-eyebrow--white {
  color: rgba(255,255,255,0.55) !important;
}
.st-eyebrow--white::before {
  background: rgba(255,255,255,0.25) !important;
}

/* Mono variants */
.st-mono--white { color: rgba(255,255,255,0.8); }

/* Label variants */
.st-label--white {
  color: rgba(255,255,255,0.6);
}

/* Body size variants */
.st-body--sm {
  font-size: 14px;
  line-height: 1.65;
}

/* Step number in step cards */
.st-step-num {
  font-family: var(--st-ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
  display: block;
}

/* h3 utility */
.st-h3 {
  font-family: var(--st-ff-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--st-navy);
  margin: 0;
}

/* Feature card */
.st-feature-card { }
.st-feature-card .st-mono { margin-bottom: 10px; }
.st-feature-card .st-body { margin: 0; }

/* Blockquote */
.st-blockquote {
  font-family: var(--st-ff-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--st-navy);
  padding: 24px 32px;
  border-left: 3px solid var(--st-blue);
  background: var(--st-cream2);
  border-radius: 0 8px 8px 0;
  margin: 0;
}
.st-blockquote--light {
  color: rgba(255,255,255,0.9);
  border-left-color: rgba(255,255,255,0.35);
  background: transparent;
}

/* Gate thresholds table */
.st-gate-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--st-ff-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.st-gate-table th {
  font-family: var(--st-ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.st-gate-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.4;
}
.st-gate-table tr:hover td { background: rgba(255,255,255,0.04); }

/* Provider grid */
.st-provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.st-provider {
  font-family: var(--st-ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: var(--st-r-pill);
}

/* Code block */
.st-code-block { }
.st-code-block .st-mono--white { display: block; margin-bottom: 4px; }
.st-code-block .st-body--white { font-size: 13px; margin: 4px 0 16px; }

/* Mistake icon */
.st-mistake-icon {
  display: block;
  font-size: 18px;
  color: rgba(255,100,80,0.7);
  margin-bottom: 8px;
}

/* Deliverables list */
.st-dlv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.st-dlv-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--st-cream2);
  font-size: 15px;
  line-height: 1.55;
  color: var(--st-warm);
}
.st-dlv-item:last-child { border-bottom: none; }
.st-dlv-item strong { color: var(--st-navy); font-weight: 600; }

/* Insights grid */
.st-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.st-insight-card {
  background: white;
  border: 1px solid var(--st-cream2);
  border-radius: var(--st-r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.st-insight-card:hover {
  box-shadow: 0 8px 32px rgba(13,32,64,0.1);
  transform: translateY(-2px);
}

.st-insight-card-link {
  display: block;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.st-insight-card-link .st-eyebrow { margin-bottom: 12px; }
.st-insight-card-link .st-h3 { margin-bottom: 12px; }

.st-read-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--st-ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-blue);
  transition: letter-spacing 0.2s;
}
.st-insight-card:hover .st-read-link { letter-spacing: 0.18em; }
.st-about-quote {
  font-family: var(--st-ff-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--st-navy);
  border-left: 3px solid var(--st-blue);
  padding: 16px 24px;
  margin: 16px 0 0;
}
.st-read-link--light { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.3); }
.st-read-link--light:hover { color: #fff; border-color: rgba(255,255,255,0.7); }

/* Contact page details */
.st-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.st-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--st-cream2);
  border-radius: 8px;
}
.st-contact-item .st-mono { margin-bottom: 2px; }
.st-contact-item .st-body { margin: 0; font-size: 14px; }

/* CF7 form overrides for sarolta cream theme */
.wpcf7 .wpcf7-form { }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--st-cream2);
  border-radius: 8px;
  font-family: var(--st-ff-sans);
  font-size: 15px;
  background: var(--st-cream);
  color: var(--st-navy);
  transition: border-color 0.2s;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--st-blue);
}
.wpcf7 textarea { min-height: 140px; resize: vertical; }
.wpcf7 input[type="submit"] {
  background: var(--st-blue);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: var(--st-r-pill);
  font-family: var(--st-ff-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.wpcf7 input[type="submit"]:hover { background: var(--st-blue-d); }

/* Blog post body — inner article pages */
.st-post-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--st-warm);
  max-width: 720px;
  margin: 0 auto;
}
.st-post-body h2 {
  font-family: var(--st-ff-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--st-navy);
  margin: 48px 0 16px;
}
.st-post-body h3 {
  font-family: var(--st-ff-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--st-navy);
  margin: 32px 0 12px;
}
.st-post-body p { margin: 0 0 20px; }
.st-post-body ul, .st-post-body ol {
  padding-left: 24px;
  margin: 0 0 20px;
}
.st-post-body li { margin-bottom: 8px; }
.st-post-body blockquote {
  font-style: italic;
  padding: 20px 28px;
  border-left: 3px solid var(--st-blue);
  background: var(--st-cream2);
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}
.st-post-body code {
  font-family: var(--st-ff-mono);
  font-size: 13px;
  background: var(--st-cream2);
  padding: 2px 7px;
  border-radius: 4px;
}
.st-post-body pre {
  background: var(--st-navy);
  color: rgba(255,255,255,0.85);
  padding: 24px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 24px 0;
}
.st-post-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* ── Single post layout ──────────────────────── */
.st-single-post {
  background: var(--st-cream);
  min-height: 60vh;
}
.st-single-post__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 32px 100px;
}

/* Suppress hello-elementor's default page-header on posts */
.st-single-post .page-header { display: none; }

/* ── Responsive inner page ───────────────────── */
@media (max-width: 1024px) {
  .st-insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .st-insights-grid { grid-template-columns: 1fr; }
  .st-gate-table { font-size: 12px; }
  .st-gate-table th, .st-gate-table td { padding: 10px 10px; }
  .st-hero-btns { flex-direction: column; align-items: flex-start; }
  .st-hero-sub { font-size: 16px; }
}
