/* ============================================================
   RMH MEDIA GROUP — Operations Intelligence Consulting
   Style Sheet v1.0
   ============================================================ */

:root {
  --bg-primary:    #0D0D0D;
  --bg-secondary:  #141414;
  --bg-card:       #1A1A1A;
  --bg-border:     #2A2520;
  --text-primary:  #F5F0E8;
  --text-muted:    #8A8078;
  --text-dim:      #4A4540;
  --accent-gold:   #C9973A;
  --accent-gold-dim: #7A5C22;
  --accent-glow:   rgba(201,151,58,0.14);
  --white:         #FFFFFF;
  --max-w:         1200px;
  --section-pad:   120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* subtle noise texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
}

.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 18px;
}

.body-lg { font-size: 18px; color: var(--text-muted); line-height: 1.75; }
.body-md { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
section { padding: var(--section-pad) 0; }
section:nth-child(even) { background: var(--bg-secondary); }

/* ── Gold Rule ── */
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent-gold);
  margin: 24px 0;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
  cursor: pointer;
  transition: background .25s, box-shadow .25s, color .25s;
  text-decoration: none;
}
.btn:hover {
  background: var(--accent-glow);
  box-shadow: 0 0 28px var(--accent-glow);
  opacity: 1;
}
.btn-filled {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}
.btn-filled:hover {
  background: #D4A54A;
  box-shadow: 0 0 32px var(--accent-glow);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: padding .3s, background .3s, backdrop-filter .3s;
}
#nav.scrolled {
  padding: 18px 0;
  background: rgba(13,13,13,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--accent-gold);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo:hover { opacity: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text-primary); opacity: 1; }
.nav-links .nav-cta {
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-dim);
  padding: 8px 20px;
  transition: background .2s, box-shadow .2s;
}
.nav-links .nav-cta:hover { background: var(--accent-glow); box-shadow: 0 0 18px var(--accent-glow); }
.nav-mobile-toggle { display: none; }

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
}

/* Hero background graphic */
#hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
#hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #0D0D0D 15%, transparent 45%, transparent 55%, #0D0D0D 85%),
    linear-gradient(to bottom, #0D0D0D 0%, transparent 20%, transparent 80%, #0D0D0D 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 860px; }

.hero-h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.05;
  animation: heroFadeUp .9s ease forwards;
  opacity: 0;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); letter-spacing: .02em; }
  to   { opacity: 1; transform: translateY(0);    letter-spacing: -.02em; }
}

.hero-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--accent-gold);
  margin: 32px 0;
  animation: heroFadeUp .9s .15s ease forwards;
  opacity: 0;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  animation: heroFadeUp .9s .25s ease forwards;
  opacity: 0;
}

.hero-cta-wrap {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: heroFadeUp .9s .4s ease forwards;
  opacity: 0;
}

.hero-micro {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: .05em;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ════════════════════════════════════════════════
   THE REALITY (Problem)
   ════════════════════════════════════════════════ */
#problem .section-headline {
  font-size: clamp(34px, 4vw, 52px);
  max-width: 760px;
  margin-bottom: 60px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: 40px 32px;
  transition: border-color .3s;
}
.problem-card:hover { border-color: var(--accent-gold-dim); }
.problem-card h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.problem-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════
   WHAT WE DO
   ════════════════════════════════════════════════ */
#services .section-headline {
  font-size: clamp(34px, 4vw, 52px);
  max-width: 700px;
  margin-bottom: 24px;
}
#services .section-body {
  max-width: 680px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 72px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg-border);
  border: 1px solid var(--bg-border);
}
.service-card {
  background: var(--bg-card);
  padding: 48px 36px;
  transition: background .3s;
}
.service-card:hover { background: #1F1F1F; }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: block;
}
.service-card h3 { font-size: 26px; margin-bottom: 16px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════ */
#process .section-headline {
  font-size: clamp(34px, 4vw, 52px);
  max-width: 680px;
  margin-bottom: 72px;
}
.process-stages { display: flex; flex-direction: column; gap: 0; }
.stage {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--bg-border);
  position: relative;
}
.stage:last-child { border-bottom: 1px solid var(--bg-border); }
.stage-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1;
  transition: color .4s;
}
.stage:hover .stage-num { color: var(--accent-gold-dim); }
.stage-content h3 { font-size: 30px; margin-bottom: 8px; }
.stage-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.stage-content p { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 640px; }
.stage-badge {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--accent-gold-dim);
  color: var(--accent-gold);
}
.process-note {
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--bg-card);
  border-left: 2px solid var(--accent-gold-dim);
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   PROOF / PORTFOLIO
   ════════════════════════════════════════════════ */
#proof .section-headline {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 20px;
}
#proof .credential-block {
  max-width: 780px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 72px;
}
#proof .credential-block strong { color: var(--text-primary); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  cursor: default;
}
.portfolio-card:hover {
  border-color: var(--accent-gold-dim);
  transform: scale(1.015);
}
.portfolio-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Placeholder grid texture for cards awaiting screenshots */
.portfolio-thumb-placeholder {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,151,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,151,58,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.portfolio-thumb-icon {
  font-size: 36px;
  color: var(--accent-gold-dim);
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  opacity: .5;
}
.portfolio-body { padding: 28px 28px 32px; }
.portfolio-body h4 { font-size: 22px; margin-bottom: 8px; }
.portfolio-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 12px;
}
.portfolio-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.portfolio-outcome {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* ════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════ */
#about { padding: var(--section-pad) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-left h2 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 8px;
}
.about-left .about-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: block;
}
.about-right p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}
.about-right p:last-of-type { margin-bottom: 36px; }
.about-right p strong { color: var(--text-primary); }
.about-contact {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 2;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .05em;
}
.about-contact a { color: var(--accent-gold); }

/* ════════════════════════════════════════════════
   THE OFFER
   ════════════════════════════════════════════════ */
#offer {
  text-align: center;
  padding: calc(var(--section-pad) * 1.2) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
#offer::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,151,58,.05) 0%, transparent 65%);
  pointer-events: none;
}
#offer .section-headline {
  font-size: clamp(36px, 5vw, 60px);
  max-width: 720px;
  margin: 0 auto 24px;
  position: relative;
}
#offer .offer-body {
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
}
#offer .offer-micro {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: .08em;
  font-family: 'Barlow Condensed', sans-serif;
  display: block;
  position: relative;
}

/* ════════════════════════════════════════════════
   CONTACT / BOOK
   ════════════════════════════════════════════════ */
#contact .section-headline {
  font-size: clamp(34px, 4vw, 52px);
  max-width: 580px;
  margin-bottom: 56px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  color: var(--text-primary);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold-dim);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-honeypot { display: none; }

.contact-direct {
  padding-top: 8px;
}
.contact-direct h3 {
  font-size: 28px;
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-info-value {
  font-size: 16px;
  color: var(--text-muted);
}
.contact-info-value a { color: var(--text-muted); }
.contact-info-value a:hover { color: var(--accent-gold); }
.contact-note {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--bg-border);
  font-style: italic;
}

/* Form success state */
.form-success {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--accent-gold-dim);
  padding: 40px;
  text-align: center;
}
.form-success h3 { font-size: 28px; margin-bottom: 12px; color: var(--accent-gold); }
.form-success p { color: var(--text-muted); }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
#footer {
  padding: 48px 0;
  border-top: 1px solid var(--bg-border);
  background: var(--bg-primary);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--text-dim);
  line-height: 1.8;
}
.footer-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
  display: block;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-right a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-right a:hover { color: var(--text-muted); }
.linkedin-icon {
  width: 20px; height: 20px;
  fill: var(--text-dim);
  transition: fill .2s;
}
.linkedin-icon:hover { fill: var(--accent-gold); }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --section-pad: 80px; }

  .nav-links { display: none; gap: 0; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 18px; letter-spacing: .2em; }
  .nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
    background: none;
    border: none;
    padding: 4px;
  }
  .nav-mobile-toggle span {
    display: block;
    width: 24px; height: 1px;
    background: var(--text-primary);
    transition: transform .3s, opacity .3s;
  }
  .nav-mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
  .nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

  .problem-grid { grid-template-columns: 1fr; gap: 2px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .stage { grid-template-columns: 80px 1fr; gap: 28px; }
  .stage-num { font-size: 52px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  :root { --section-pad: 64px; }
  .hero-h1 { font-size: clamp(40px, 11vw, 64px); }
}

/* ════════════════════════════════════════════════
   PROBLEM GRID — 4 COLUMNS (2x2 on desktop)
   ════════════════════════════════════════════════ */
.problem-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ════════════════════════════════════════════════
   SERVICES GRID — 4 PILLARS (2x2)
   ════════════════════════════════════════════════ */
.services-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

/* ════════════════════════════════════════════════
   SAAS REPLACEMENT SECTION
   ════════════════════════════════════════════════ */
#saas { background: var(--bg-secondary); }

#saas .section-headline { max-width: 760px; margin-bottom: 24px; }
#saas .section-body { max-width: 720px; font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 56px; }

.saas-table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
}
.saas-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
}
.saas-table th, .saas-table td {
  padding: 16px 20px;
  border: 1px solid var(--bg-border);
  color: var(--text-muted);
  text-align: left;
}
.saas-table thead th {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 13px;
}
.saas-th-highlight {
  background: var(--bg-card) !important;
  border-top: 2px solid var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}
.saas-td-highlight {
  color: var(--text-primary) !important;
  background: rgba(180,150,80,.04);
}
.saas-label {
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
}
.saas-table tbody tr:hover td { background: rgba(255,255,255,.02); }

.saas-examples {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-left: 3px solid var(--accent-gold);
  padding: 36px 40px;
  max-width: 800px;
  margin: 0 auto 0 0;
}
.saas-examples p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.saas-examples p:last-child { margin-bottom: 0; }
.saas-examples strong { color: var(--text-primary); }
.saas-examples-note {
  color: var(--text-dim) !important;
  font-style: italic;
  font-size: 14px !important;
}

/* ════════════════════════════════════════════════
   HOW IT WORKS — STAGE OPTIONS
   ════════════════════════════════════════════════ */
.stage-options {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stage-option {
  border-left: 2px solid var(--bg-border);
  padding-left: 20px;
}
.stage-option-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}
.stage-option p {
  font-size: 15px !important;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 !important;
  max-width: 560px;
}

/* ════════════════════════════════════════════════
   LIVE DEMOS
   ════════════════════════════════════════════════ */
.demo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.demo-card .portfolio-body { padding: 32px; }

/* ════════════════════════════════════════════════
   MOBILE OVERRIDES FOR NEW ELEMENTS
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr !important; }
  .services-grid-4 { grid-template-columns: 1fr !important; }
  .saas-examples { padding: 28px 24px; }
  .saas-table th, .saas-table td { padding: 12px 14px; font-size: 13px; }
}

/* ════════════════════════════════════════════════
   SCREENSHOT SECTION
   ════════════════════════════════════════════════ */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.screenshot-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.screenshot-item:nth-child(2) {
  transform: translateY(16px);
}
.screenshot-frame {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12), 0 16px 48px rgba(0,0,0,0.5);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.screenshot-frame:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.28), 0 20px 60px rgba(0,0,0,0.6);
  transform: translateY(-4px);
}
.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.screenshot-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  .screenshot-item:nth-child(2) {
    transform: none;
  }
}
