:root {
  --bg-dark: #0c0a09;
  --bg-card: #1c1917;
  --bg-elevated: #292524;
  --fg: #fafaf9;
  --fg-muted: #a8a29e;
  --accent: #f59e0b;
  --accent-glow: #fbbf24;
  --accent-dark: #b45309;
  --border: #44403c;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ── PROBLEM ── */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.problem-left p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* ── SERVICES ── */
.services {
  padding: 6rem 2rem;
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services .section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--accent-dark);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(245,158,11,0.1);
  border: 1px solid var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── HOW ── */
.how {
  padding: 6rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.how .section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vw;
  max-width: 800px;
  max-height: 600px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer p {
  color: var(--fg-muted);
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

footer .brand {
  color: var(--accent);
  font-weight: 600;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--fg);
}

/* "Free Video" nav link — accent-colored to draw the eye */
.nav-link--highlight {
  color: var(--accent) !important;
  font-weight: 600;
}
.nav-link--highlight:hover {
  color: var(--accent-glow) !important;
}

.nav-cta {
  background: var(--accent);
  color: #0c0a09;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ── BUTTONS (shared) ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0c0a09;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--accent-dark);
  color: var(--fg);
}

.btn-secondary {
  display: inline-block;
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

/* ── HERO ACTIONS ── */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero {
  padding-top: 9rem; /* account for fixed nav */
}

/* ── CLOSING ACTIONS ── */
.closing-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero--tight {
  padding-bottom: 3rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

/* ── PRICING ── */
.plans-section {
  padding: 4rem 2rem 8rem;
}

.plans-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 5rem;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.plan-card:hover {
  border-color: var(--accent-dark);
  transform: translateY(-3px);
}

.plan-card--featured {
  border-color: var(--accent-dark);
  background: linear-gradient(160deg, rgba(245,158,11,0.06) 0%, var(--bg-card) 60%);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0c0a09;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.plan-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.plan-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.plan-period {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.plan-volume {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.feature-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.plan-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--fg);
  transition: all 0.2s;
  margin-bottom: 0.75rem;
}

.plan-btn:hover {
  border-color: var(--accent-dark);
  color: var(--accent);
}

.plan-btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #0c0a09;
}

.plan-btn--accent:hover {
  background: var(--accent-glow);
  border-color: var(--accent-glow);
  color: #0c0a09;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.plan-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  opacity: 0.7;
}

.plans-faq {
  margin-bottom: 4rem;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

.faq-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item a {
  color: var(--accent);
  text-decoration: none;
}

.plans-cta-strip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  text-align: center;
}

.plans-cta-strip p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.plans-cta-strip a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* ── GALLERY ── */
.gallery-section {
  padding: 3rem 2rem 8rem;
}

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--accent-dark);
  color: var(--fg);
}

.filter-btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0c0a09;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-dark);
}

.gallery-card-header {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid;
}

.gallery-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.gallery-meta {
  flex: 1;
  min-width: 0;
}

.gallery-niche {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.gallery-client {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.gallery-location {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.gallery-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.gallery-result {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(245, 158, 11, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}

.result-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.result-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}

.gallery-description {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.gallery-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gallery-platforms {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.platform-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.gallery-volume {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.gallery-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
}

.gallery-cta h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.gallery-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ── INTAKE ── */
.intake-section {
  padding: 3rem 2rem 8rem;
}

.intake-inner {
  max-width: 720px;
  margin: 0 auto;
}

.intake-success {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.12);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  font-weight: 700;
}

.intake-success h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.intake-success p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.intake-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  color: #fca5a5;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 2rem;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.form-section-hint {
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row--2 > * {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.req {
  color: var(--accent);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.7rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.5;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a8a29e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
}

.checkbox-label:hover {
  border-color: var(--accent-dark);
  background: rgba(245, 158, 11, 0.04);
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  flex-shrink: 0;
  transition: all 0.15s;
  position: relative;
  background: var(--bg-elevated);
}

.checkbox-input:checked + .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0c0a09;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.checkbox-text {
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: color 0.15s;
  line-height: 1.3;
}

.checkbox-input:checked ~ .checkbox-text {
  color: var(--fg);
}

.form-submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.btn-submit {
  background: var(--accent);
  color: #0c0a09;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}

.btn-submit:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.submit-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ── NICHE LANDING PAGES ── */

/* Niche hero — same structure as .hero but with niche-specific glow tint */
.niche-hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.niche-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  pointer-events: none;
}

.niche-hero--roofers::before {
  background: radial-gradient(circle, rgba(245,158,11,0.13) 0%, transparent 70%);
}

.niche-hero--restaurants::before {
  background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, transparent 70%);
}

.niche-hero--gyms::before {
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
}

.niche-hero--city::before {
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
}

.niche-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.niche-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.niche-hero .lede {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* Pain points section */
.niche-pain {
  padding: 6rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.niche-pain-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.niche-pain .section-label,
.niche-cases .section-label,
.niche-pricing .section-label,
.niche-faq .section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.niche-pain h2,
.niche-cases h2,
.niche-pricing h2,
.niche-faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pain-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.pain-card:hover {
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.pain-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.pain-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Case studies */
.niche-cases {
  padding: 6rem 2rem;
}

.niche-cases-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-dark);
}

.case-card--highlight {
  background: linear-gradient(160deg, rgba(245,158,11,0.05) 0%, var(--bg-card) 60%);
  border-color: var(--accent-dark);
}

.case-header {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid;
}

.case-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.case-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.case-niche {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.case-client {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.case-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.case-result {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(245, 158, 11, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}

.case-description {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.case-meta-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.case-volume {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-left: auto;
  white-space: nowrap;
}

/* Niche pricing */
.niche-pricing {
  padding: 6rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.niche-pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.niche-pricing-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 3rem;
}

.niche-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.niche-plan {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.niche-plan:hover {
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.niche-plan--rec {
  border-color: var(--accent-dark);
  background: linear-gradient(160deg, rgba(245,158,11,0.07) 0%, var(--bg-elevated) 60%);
}

.niche-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0c0a09;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.niche-plan-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.niche-plan-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.niche-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.niche-plan-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.niche-plan-period {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.niche-plan-volume {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.niche-plan-for {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.niche-plan-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--fg);
  transition: all 0.2s;
}

.niche-plan-btn:hover {
  border-color: var(--accent-dark);
  color: var(--accent);
}

.niche-plan-btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #0c0a09;
}

.niche-plan-btn--accent:hover {
  background: var(--accent-glow);
  border-color: var(--accent-glow);
  color: #0c0a09;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

/* Niche FAQ */
.niche-faq {
  padding: 6rem 2rem;
}

.niche-faq-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Niche closing CTA */
.niche-closing {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.niche-closing::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vw;
  max-width: 800px;
  max-height: 600px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.niche-closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.niche-closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.niche-closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-trigger:hover {
  color: var(--fg);
}

.nav-dropdown-trigger::after {
  content: '▾';
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-item:hover {
  background: var(--bg-elevated);
  color: var(--fg);
}

/* Footer niche links */
.footer-niches {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-niche-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  opacity: 0.6;
}

.footer-niche-link:hover {
  color: var(--accent);
  opacity: 1;
}

/* Footer city links */
.footer-cities {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.footer-cities-label {
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.5;
  text-transform: uppercase;
}

.footer-cities-sep {
  color: var(--fg-muted);
  opacity: 0.3;
  font-size: 0.75rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 85vh;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }

  .step-number {
    font-size: 1.8rem;
  }

  .problem, .services, .how {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    text-align: center;
  }

  .closing-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .page-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .gallery-section,
  .intake-section,
  .plans-section {
    padding: 2rem 1.5rem 5rem;
  }

  .pain-grid,
  .cases-grid,
  .niche-plans-grid {
    grid-template-columns: 1fr;
  }

  .niche-hero {
    padding: 7rem 1.5rem 4rem;
    min-height: 75vh;
  }

  .niche-pain,
  .niche-cases,
  .niche-pricing,
  .niche-faq {
    padding: 4rem 1.5rem;
  }

  .niche-closing {
    padding: 5rem 1.5rem;
  }

  .niche-pain h2,
  .niche-cases h2,
  .niche-pricing h2,
  .niche-faq h2 {
    margin-bottom: 2rem;
  }

  .niche-plan--rec {
    order: -1;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: none;
  }
}

/* ── /WORK PAGE ── */

.work-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.work-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.work-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.work-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.work-hero .lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── FILTER SECTION ── */
.work-section {
  padding: 4rem 2rem 6rem;
}

.work-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.work-filter-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.work-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.work-filter-btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0c0a09;
}

/* ── PORTFOLIO GRID ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.work-card:hover {
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-3px);
}

/* 9:16 vertical video aspect ratio */
.work-card-video {
  position: relative;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-card-play {
  color: rgba(250,250,249,0.9);
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
  transition: transform 0.2s;
}

.work-card:hover .work-card-play {
  transform: scale(1.1);
}

.work-card-format-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.work-format-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid;
  background: rgba(12,10,9,0.6);
  backdrop-filter: blur(4px);
}

.work-format-tag--dark {
  border-color: rgba(255,255,255,0.2);
  color: rgba(250,250,249,0.8);
}

.work-card-sample-label {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,249,0.45);
  background: rgba(12,10,9,0.5);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

/* Card body */
.work-card-body {
  padding: 1.25rem;
}

.work-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.work-niche-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-city-badge {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.work-business-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.work-headline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.work-result-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.work-result-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

.work-result-value {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
}

/* ── TESTIMONIALS BAND ── */
.work-testimonials {
  padding: 6rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.work-testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.work-testimonials-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  margin-bottom: 3rem;
  max-width: 640px;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.testimonial-quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── PROCESS SECTION ── */
.work-process {
  padding: 6rem 2rem;
}

.work-process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.work-process h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  margin-bottom: 3.5rem;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 0 1.5rem;
  text-align: center;
}

.process-connector {
  flex: 0 0 2px;
  height: 2px;
  background: var(--border);
  margin-top: 3rem;
  position: relative;
}

.process-connector::after {
  content: '→';
  position: absolute;
  top: -0.75rem;
  right: -0.4rem;
  color: var(--accent);
  font-size: 1rem;
}

.process-step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.process-step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-step-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── BOTTOM CTA ── */
.work-cta {
  padding: 7rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  text-align: center;
}

.work-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.work-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.work-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.work-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE /WORK ── */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: left;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-filters {
    gap: 0.4rem;
  }

  .work-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}