/* ============================================================
   TrueWright — dist/style.css
   Deep navy + warm cream. Space Grotesk headlines + Lora body.
   Mobile-first. No build step. No dependencies.
   ============================================================ */

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

/* ---- Design tokens ---- */
:root {
  /* Navy scale */
  --navy:        #152039;
  --navy-deep:   #0d1628;
  --navy-mid:    #1e2f52;
  --navy-light:  #263c68;

  /* Cream scale */
  --cream:       #faf7f2;
  --cream-deep:  #f2ece0;
  --cream-warm:  #e8dece;

  /* Text */
  --ink:         #1c1c2e;
  --ink-soft:    #4a5065;
  --ink-mute:    #8a90a4;

  /* Steel/line */
  --steel:       #c8cdd8;
  --steel-soft:  #dde1ea;
  --line:        #e4e8f0;

  /* Accent */
  --blue:        #2563eb;
  --blue-hover:  #1d4ed8;
  --amber:       #d97706;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(15,25,50,.06), 0 4px 12px rgba(15,25,50,.06);
  --shadow-md:   0 2px 8px rgba(15,25,50,.08), 0 12px 32px rgba(15,25,50,.08);
  --shadow-lg:   0 4px 16px rgba(15,25,50,.10), 0 24px 56px rgba(15,25,50,.10);

  /* Type */
  --font-head:   'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:   'Lora', Georgia, 'Times New Roman', serif;
  --font-ui:     'Space Grotesk', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:       1120px;
  --max-w-text:  780px;
  --gutter:      clamp(16px, 4vw, 32px);
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: var(--blue); text-decoration: none; transition: color 180ms ease; }
a:hover { color: var(--blue-hover); }
button { cursor: pointer; font-family: inherit; }

/* ---- Type scale ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.75rem;
}

.lead {
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 400;
}

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: var(--max-w-text); margin: 0 auto; }

/* ---- Section defaults ---- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tinted { background: var(--cream-deep); }
.section--dark {
  background: var(--navy);
  color: var(--cream);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }
.section--dark .eyebrow { color: var(--amber); }
.section--dark p { color: rgba(250,247,242,.72); }
.section--dark .lead { color: rgba(250,247,242,.82); }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { max-width: 640px; margin: 0 auto; }

/* ---- Scroll-reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(.22,.68,0,1.2), transform 0.55s cubic-bezier(.22,.68,0,1.2);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

/* ---- Progress bar ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--blue);
  z-index: 999;
  width: 0%;
  transition: width 100ms linear;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-nav.is-scrolled { box-shadow: var(--shadow-sm); }
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 20px;
}
.site-nav__logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.04em;
  text-decoration: none;
  flex-shrink: 0;
}
.site-nav__logo span { color: var(--blue); }
.site-nav__links { display: none; gap: 28px; }
.site-nav__links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 180ms ease;
}
.site-nav__links a:hover { color: var(--navy); }
@media (min-width: 820px) { .site-nav__links { display: flex; } }

.site-nav__cta {
  display: none;
}
@media (min-width: 680px) { .site-nav__cta { display: inline-flex; } }

.site-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
@media (min-width: 820px) { .site-nav__hamburger { display: none; } }
.site-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.22s ease;
}

.site-nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 16px var(--gutter) 24px;
  gap: 4px;
}
.site-nav__mobile.is-open { display: flex; }
.site-nav__mobile a {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.site-nav__mobile a:last-child { border-bottom: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { font-size: 13px; padding: 9px 18px; }
.btn--lg { font-size: 16px; padding: 16px 30px; }

.btn--navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow-md);
  color: var(--cream);
}
.btn--blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-hover);
  box-shadow: var(--shadow-md);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,247,242,.6);
}
.btn--outline-cream:hover {
  background: rgba(250,247,242,.12);
  border-color: var(--cream);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(64px, 10vw, 112px) 0 clamp(72px, 10vw, 120px);
  background: linear-gradient(155deg, var(--cream) 0%, var(--cream-deep) 60%, var(--cream-warm) 100%);
  position: relative;
  overflow: hidden;
}
/* subtle dot grid texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
  position: relative;
}
@media (min-width: 860px) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
}
.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  font-family: var(--font-body);
  color: var(--blue);
  font-size: 0.92em;
  letter-spacing: -0.01em;
}
.hero__subhead {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.65;
}
.hero__price-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero__price-tag .divider {
  width: 1px;
  height: 20px;
  background: rgba(250,247,242,.3);
}
.hero__price-tag .monthly {
  font-weight: 400;
  font-size: 0.9em;
  opacity: 0.82;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero__trust {
  margin-top: 24px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--steel);
  flex-shrink: 0;
}
/* Hero visual — pen-and-ink sketch placeholder */
.hero__visual {
  position: relative;
}
.hero__sketch {
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-warm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__sketch img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* CSS-only sketch placeholder (Gemini 403 fallback) */
.hero__sketch-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8dece 0%, #ddd4c4 50%, #d4c8b4 100%);
  padding: 40px;
  text-align: center;
  position: relative;
}
.hero__sketch-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1.5px solid rgba(21,32,57,.15);
  border-radius: 8px;
  pointer-events: none;
}
.hero__sketch-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(21,32,57,.45);
  margin-top: 12px;
}
.hero__sketch-icon {
  font-size: 64px;
  line-height: 1;
  opacity: 0.25;
}
/* decorative frame */
.hero__visual::after {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1.5px solid rgba(37,99,235,.15);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   TRUST STRIP (logos / stats)
   ============================================================ */
.trust-strip {
  background: var(--navy-deep);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}
.trust-item {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(250,247,242,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trust-item__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.03em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-card__num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: rgba(37,99,235,.10);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}
.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,.25);
  color: inherit;
}
.service-card__trade {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.service-card--featured h3 { color: var(--cream); }
.service-card--featured p { color: rgba(250,247,242,.72); }
.service-card--featured:hover { border-color: var(--navy-light); color: inherit; }

/* ============================================================
   JOURNAL GRID
   ============================================================ */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .journal-grid { grid-template-columns: repeat(3, 1fr); } }

.journal-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.journal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,.2);
  color: inherit;
}
.journal-card__sketch {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
  flex-shrink: 0;
}
.journal-card__sketch img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.journal-card:hover .journal-card__sketch img { transform: scale(1.04); }
/* CSS gradient placeholder when no image */
.journal-card__sketch--placeholder {
  background: linear-gradient(135deg, #e8dece 0%, #d4c8b4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(21,32,57,.35);
  padding: 20px;
  text-align: center;
}
/* Numbered placeholder variant */
.journal-card__sketch--n1  { background: linear-gradient(135deg, #c8d4e8 0%, #b0bfd6 100%); }
.journal-card__sketch--n2  { background: linear-gradient(135deg, #d0c8e0 0%, #bcb4cc 100%); }
.journal-card__sketch--n3  { background: linear-gradient(135deg, #c4d4cc 0%, #b0c4bc 100%); }
.journal-card__sketch--n4  { background: linear-gradient(135deg, #d8ccc0 0%, #c4b4a4 100%); }
.journal-card__sketch--n5  { background: linear-gradient(135deg, #ccd0d8 0%, #b8bcc8 100%); }
.journal-card__sketch--n6  { background: linear-gradient(135deg, #d4ccc4 0%, #c0b4ac 100%); }
.journal-card__sketch--n7  { background: linear-gradient(135deg, #c8d4cc 0%, #b4c0b8 100%); }
.journal-card__sketch--n8  { background: linear-gradient(135deg, #dcccc4 0%, #c8b8b0 100%); }
.journal-card__sketch--n9  { background: linear-gradient(135deg, #c4ccdc 0%, #b0b8c8 100%); }
.journal-card__sketch--n10 { background: linear-gradient(135deg, #d4d8cc 0%, #c0c4b8 100%); }
.journal-card__sketch--n11 { background: linear-gradient(135deg, #ccc8d4 0%, #b8b4c0 100%); }
.journal-card__sketch--n12 { background: linear-gradient(135deg, #c8d0cc 0%, #b4bcb8 100%); }
.journal-card__sketch--n13 { background: linear-gradient(135deg, #d0c8c8 0%, #bcb4b4 100%); }
.journal-card__sketch--n14 { background: linear-gradient(135deg, #c4d0d8 0%, #b0bccc 100%); }
.journal-card__sketch--n15 { background: linear-gradient(135deg, #d4ccc8 0%, #c0b8b4 100%); }
.journal-card__sketch--n16 { background: linear-gradient(135deg, #ccd4d0 0%, #b8c0bc 100%); }
.journal-card__sketch--n17 { background: linear-gradient(135deg, #d8d0c8 0%, #c4bcb4 100%); }
.journal-card__sketch--n18 { background: linear-gradient(135deg, #c8cccc 0%, #b4b8b8 100%); }

.journal-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.journal-card__tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.journal-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.journal-card__excerpt {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.journal-card__meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.journal-card__meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--steel);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}
@media (min-width: 680px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }

.pricing-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
}
.pricing-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured .pricing-card__name,
.pricing-card--featured h3 { color: var(--cream); }
.pricing-card--featured .pricing-card__price { color: var(--cream); }
.pricing-card--featured .pricing-card__price-note { color: rgba(250,247,242,.65); }
.pricing-card--featured .pricing-card__feature { color: rgba(250,247,242,.82); border-color: rgba(250,247,242,.1); }
.pricing-card--featured .pricing-card__feature::before { background: rgba(250,247,242,.5); }
.pricing-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pricing-card__name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card__price-note {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.pricing-card__divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}
.pricing-card--featured .pricing-card__divider { background: rgba(250,247,242,.1); }
.pricing-card__features { list-style: none; margin-bottom: 32px; }
.pricing-card__feature {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink-soft);
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.pricing-card__feature:last-child { border-bottom: none; }
.pricing-card__feature::before {
  content: "";
  position: absolute;
  left: 0; top: 20px;
  width: 12px; height: 1.5px;
  background: var(--steel);
}

/* ============================================================
   EXAMPLES / MOCKUPS
   ============================================================ */
.examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) { .examples-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .examples-grid { grid-template-columns: repeat(3, 1fr); } }

.example-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.example-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.example-card__preview {
  aspect-ratio: 16 / 10;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(250,247,242,.5);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
/* Mini browser chrome in example preview */
.example-card__chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.example-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.example-card__body {
  padding: 24px;
}
.example-card__trade {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.example-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.example-card p { font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-item__question:hover { color: var(--blue); }
.faq-item__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--steel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-size: 16px;
  color: var(--ink-mute);
  font-style: normal;
}
.faq-item.is-open .faq-item__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.35s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 400px; }
.faq-item__answer-inner {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item__answer-inner a { color: var(--blue); text-decoration: underline; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  max-width: 620px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 560px) {
  .form-row--2col { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--steel);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 12px;
}
.form-success, .form-error {
  display: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  margin-top: 16px;
}
.form-success.is-visible { display: block; background: #dcfce7; color: #166534; }
.form-error.is-visible   { display: block; background: #fee2e2; color: #991b1b; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
}
.footer__brand-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.footer__brand-name span { color: var(--blue); }
.footer__tagline {
  font-size: 14px;
  color: rgba(250,247,242,.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250,247,242,.15);
  border-radius: 50%;
  font-size: 13px;
  color: rgba(250,247,242,.6);
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-ui);
  font-weight: 600;
}
.footer__social-link:hover {
  background: rgba(250,247,242,.1);
  border-color: rgba(250,247,242,.35);
  color: var(--cream);
}
.footer__col h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,.45);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(250,247,242,.72);
  padding: 4px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(250,247,242,.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__legal {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(250,247,242,.35);
  line-height: 1.7;
}
.footer__legal a { color: rgba(250,247,242,.5); text-decoration: underline; }
.footer__legal a:hover { color: rgba(250,247,242,.8); }

/* ============================================================
   SERVICE / JOURNAL ARTICLE PAGES
   ============================================================ */
.article-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  background: var(--navy);
  color: var(--cream);
}
.article-hero .eyebrow { color: var(--amber); }
.article-hero h1 { color: var(--cream); font-size: clamp(1.75rem, 4.5vw, 3rem); max-width: 800px; }
.article-hero .lead { color: rgba(250,247,242,.75); max-width: 640px; margin-top: 20px; }
.article-hero__meta {
  margin-top: 24px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(250,247,242,.5);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.article-hero__meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(250,247,242,.3);
}
.article-sketch-band {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
}
.article-sketch-band__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.article-sketch {
  aspect-ratio: 21 / 9;
  background: linear-gradient(135deg, #d8d4cc 0%, #c8c0b4 100%);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(21,32,57,.4);
  overflow: hidden;
}
.article-sketch img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px);
}
.article-content {
  max-width: 740px;
  margin: 0 auto;
}
.article-content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-top: 2.5em;
  margin-bottom: 0.75em;
}
.article-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.article-content h2:first-child,
.article-content h3:first-child { margin-top: 0; }
.article-content p {
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.25em;
}
.article-content ul,
.article-content ol {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
}
.article-content ul li,
.article-content ol li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
}
.article-content ul li:last-child,
.article-content ol li:last-child { border-bottom: none; }
.article-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 1.5px;
  background: var(--steel);
}
.article-content ol { counter-reset: article-list; }
.article-content ol li { counter-increment: article-list; }
.article-content ol li::before {
  content: counter(article-list);
  position: absolute;
  left: 0; top: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
}
.article-content blockquote {
  border-left: 3px solid var(--blue);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--cream-deep);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-content blockquote p {
  font-style: italic;
  color: var(--navy);
  margin: 0;
  font-size: 1.1rem;
}
.article-content strong { font-weight: 600; color: var(--navy); }
.article-content code {
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2px 6px;
  color: var(--navy);
}
.article-content pre {
  background: var(--navy);
  color: var(--cream);
  padding: 24px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 2em 0;
}
.article-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--cream);
  font-size: 0.88rem;
  line-height: 1.65;
}
/* Article CTA box */
.article-cta-box {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin: 3em 0;
  text-align: center;
}
.article-cta-box h3 { color: var(--cream); margin-bottom: 12px; }
.article-cta-box p { color: rgba(250,247,242,.72); margin-bottom: 24px; }

/* Article sidebar / TOC (desktop only) */
.article-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1000px) {
  .article-with-sidebar { grid-template-columns: 1fr 280px; }
}
.article-toc {
  position: sticky;
  top: 80px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.article-toc h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.article-toc ol { list-style: none; counter-reset: toc; }
.article-toc ol li { counter-increment: toc; }
.article-toc ol li::before { display: none; }
.article-toc a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.article-toc a::before {
  content: counter(toc);
  font-weight: 700;
  color: var(--blue);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.article-toc a:hover { color: var(--navy); }
.article-toc li:last-child a { border-bottom: none; }

/* ============================================================
   MOCKUP EXAMPLE SITES (examples/*.html)
   ============================================================ */
.mockup-site-banner {
  background: var(--navy);
  color: var(--cream);
  padding: 10px var(--gutter);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.mockup-site-banner a {
  color: var(--amber);
  text-decoration: underline;
  font-weight: 600;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--navy-deep);
  overflow: hidden;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee 40s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-inner span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,.45);
  padding: 0 20px;
}
.marquee-dot {
  width: 3px !important;
  height: 3px !important;
  border-radius: 50% !important;
  background: rgba(250,247,242,.2) !important;
  display: inline-block !important;
  padding: 0 !important;
  flex-shrink: 0;
  margin: 0 !important;
  vertical-align: middle;
}

/* ============================================================
   THREE WINDOWS — CSS 3D HERO SCENE
   ============================================================ */

/* Scene container — perspective origin */
.hero-3d-scene {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 1200px;
  perspective-origin: 50% 46%;
  transform-style: preserve-3d;
  user-select: none;
  /* On mobile: scale scene down and stack normally */
}

/* Reduced-motion: show final state immediately, no transforms */
.hero-3d-scene.hw-reduced .hw-win {
  opacity: 1 !important;
  transform: none !important;
}

/* Before JS loads, keep windows invisible to prevent flash */
.hw-win {
  opacity: 0;
  position: absolute;
  transform-style: preserve-3d;
  border-radius: 13px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(10,18,40,.18),
    0 12px 40px rgba(10,18,40,.28),
    0 32px 80px rgba(10,18,40,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
  will-change: transform, opacity;
}

/* Resting state transforms (used by reduced-motion + as JS targets) */
.hw-win--0 {
  width: 340px;
  top: 40px;
  left: 50%;
  margin-left: -170px;
  transform: rotateY(-14deg) rotateX(4deg) translateZ(0px) translateX(0px) translateY(0px);
  z-index: 3;
}
.hw-win--1 {
  width: 300px;
  top: 80px;
  left: 50%;
  margin-left: -150px;
  transform: rotateY(6deg) rotateX(-3deg) translateZ(-90px) translateX(30px) translateY(-18px);
  z-index: 2;
}
.hw-win--2 {
  width: 268px;
  top: 110px;
  left: 50%;
  margin-left: -134px;
  transform: rotateY(22deg) rotateX(6deg) translateZ(-180px) translateX(-20px) translateY(24px);
  z-index: 1;
}

/* Reduced-motion resting state (static, no JS needed) */
.hero-3d-scene.hw-reduced .hw-win--0 {
  transform: rotateY(-14deg) rotateX(4deg) translateZ(0px);
}
.hero-3d-scene.hw-reduced .hw-win--1 {
  transform: rotateY(6deg) rotateX(-3deg) translateZ(-90px) translateX(30px) translateY(-18px);
}
.hero-3d-scene.hw-reduced .hw-win--2 {
  transform: rotateY(22deg) rotateX(6deg) translateZ(-180px) translateX(-20px) translateY(24px);
}

/* ── Browser chrome bar ── */
.hw-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: #1a1f2e;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.hw-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hw-dot--r { background: #ff5f57; }
.hw-dot--y { background: #febc2e; }
.hw-dot--g { background: #28c840; }
.hw-addr {
  margin-left: 8px;
  flex: 1;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 3px 8px;
  font-family: var(--font-ui);
  font-size: 9px;
  color: rgba(255,255,255,.38);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Window body container ── */
.hw-body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ================================================================
   WINDOW 0 — Photographer (dark editorial)
   ================================================================ */
.hw-body--photo {
  background: #0e0e10;
}
.hw-photo-hero {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.hw-photo-img {
  position: absolute;
  inset: 0;
  /* Stylised editorial gradient suggesting moody portrait photography */
  background:
    radial-gradient(ellipse 80% 120% at 60% 40%, rgba(120,80,60,.55) 0%, transparent 70%),
    linear-gradient(160deg, #1a1010 0%, #2a1818 40%, #0e0e10 100%);
}
.hw-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 60%);
}
.hw-photo-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hw-photo-sub {
  font-size: 8px;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hw-photo-cta {
  margin-top: 6px;
  display: inline-block;
  font-size: 9px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}
.hw-cursor {
  display: inline-block;
  margin-left: 1px;
  color: rgba(255,255,255,.9);
  font-weight: 400;
}
.hw-photo-row {
  display: flex;
  gap: 3px;
  padding: 6px 6px 6px;
  background: #0e0e10;
}
.hw-thumb {
  flex: 1;
  height: 40px;
  border-radius: 3px;
}
.hw-thumb--1 { background: linear-gradient(135deg, #2a1a1a 0%, #3a2a20 100%); }
.hw-thumb--2 { background: linear-gradient(135deg, #1a1a2a 0%, #2a2030 100%); }
.hw-thumb--3 { background: linear-gradient(135deg, #1a2a20 0%, #2a3028 100%); }

/* ================================================================
   WINDOW 1 — Local services (cream/warm, contact-forward)
   ================================================================ */
.hw-body--local {
  background: #faf7f0;
  display: flex;
  flex-direction: column;
}
.hw-local-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #e8e2d8;
}
.hw-local-logo {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: #1a2840;
  letter-spacing: -0.02em;
}
.hw-local-cta-btn {
  font-size: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: #fff;
  background: #1a2840;
  border-radius: 3px;
  padding: 3px 7px;
}
.hw-local-hero {
  padding: 12px 12px 8px;
  flex: 1;
}
.hw-local-eyebrow {
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 5px;
}
.hw-local-h1 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #1a2840;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hw-local-stars {
  font-size: 9px;
  color: #f59e0b;
}
.hw-local-stars span {
  font-family: var(--font-ui);
  font-size: 7px;
  color: #6b7280;
  margin-left: 2px;
}
.hw-local-form {
  padding: 8px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hw-field {
  height: 16px;
  background: #fff;
  border: 1px solid #d1ccc4;
  border-radius: 3px;
}
.hw-field--sm {
  height: 12px;
}
.hw-submit-btn {
  height: 18px;
  background: #2563eb;
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ================================================================
   WINDOW 2 — SaaS / coach (techy, gradient dark)
   ================================================================ */
.hw-body--saas {
  background: #060a18;
  display: flex;
  flex-direction: column;
}
.hw-saas-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hw-saas-logo {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: -0.02em;
  margin-right: 4px;
}
.hw-saas-links {
  display: flex;
  gap: 6px;
  flex: 1;
}
.hw-saas-links span {
  display: block;
  width: 24px;
  height: 5px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
}
.hw-saas-cta-btn {
  font-size: 7px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border-radius: 3px;
  padding: 3px 6px;
}
.hw-saas-hero {
  padding: 14px 12px 8px;
  flex: 1;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(37,99,235,.25) 0%, transparent 65%);
}
.hw-saas-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(99,179,255,.9);
  background: rgba(37,99,235,.22);
  border: 1px solid rgba(37,99,235,.4);
  border-radius: 3px;
  padding: 2px 6px;
  margin-bottom: 7px;
}
.hw-saas-h1 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 5px;
}
.hw-saas-sub {
  font-size: 8px;
  font-family: var(--font-ui);
  color: rgba(255,255,255,.42);
  line-height: 1.4;
  margin-bottom: 8px;
}
.hw-saas-actions {
  display: flex;
  gap: 5px;
}
.hw-saas-btn-primary {
  font-size: 7px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border-radius: 3px;
  padding: 4px 8px;
}
.hw-saas-btn-ghost {
  font-size: 7px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  padding: 4px 8px;
}
.hw-saas-cards {
  display: flex;
  gap: 4px;
  padding: 6px 10px 10px;
}
.hw-saas-card {
  flex: 1;
  height: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
}

/* ================================================================
   RESPONSIVE — mobile collapses scene
   ================================================================ */
@media (max-width: 859px) {
  .hero__visual {
    /* On mobile, show just the front window scaled down */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-3d-scene {
    height: 280px;
    perspective: 800px;
    transform: scale(0.82);
    transform-origin: top center;
  }
  /* Hide mid + back windows on small screens */
  .hw-win--1,
  .hw-win--2 {
    display: none;
  }
  .hw-win--0 {
    top: 20px;
    left: 50%;
    margin-left: -160px;
    width: 320px;
    /* Flatten the 3D tilt on mobile so it fits the space */
    transform: rotateY(-6deg) rotateX(2deg) translateZ(0) !important;
  }
}

/* ============================================================
   MAGNETIC BUTTONS
   ============================================================ */
.magnetic {
  position: relative;
  transition: transform 0.2s cubic-bezier(.22,.68,0,1.2), box-shadow 0.2s ease;
}

/* ============================================================
   ANIMATED COUNTER
   ============================================================ */
.counter { display: inline-block; }

/* ============================================================
   SERVICE CARD ICON (replaces emoji)
   ============================================================ */
.service-card__icon {
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1;
  color: var(--blue);
  opacity: 0.65;
}

/* ============================================================
   EXAMPLE CARD TIER BADGE
   ============================================================ */
.example-card__tier {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

/* ============================================================
   3D TILT CARDS
   ============================================================ */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(.22,.68,0,1.2), box-shadow 0.25s ease;
}
.tilt-card:hover {
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   FREE MOCKUP FORM PAGE
   ============================================================ */
.mockup-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.style-pref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
@media (min-width: 560px) {
  .style-pref-grid { grid-template-columns: repeat(4, 1fr); }
}
.style-pref-option {
  position: relative;
  cursor: pointer;
}
.style-pref-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.style-pref-option label {
  display: block;
  padding: 14px 10px;
  border: 1.5px solid var(--steel);
  border-radius: var(--radius-sm);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.18s ease;
  line-height: 1.3;
}
.style-pref-option input[type="radio"]:checked + label,
.style-pref-option label:hover {
  border-color: var(--blue);
  background: rgba(37,99,235,.06);
  color: var(--navy);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.hairline { height: 1px; background: var(--line); border: none; }
