/* ═══════════════════════════════════════
   BLOCKS CSS — All ACF block styles
   ═══════════════════════════════════════ */

/* ── HERO — Homepage ── */
.hero-homepage {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}

.hero-homepage .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 80px;
}

.hero-homepage .hero-right {
  background: var(--cream-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(
    circle,
    var(--text-dark) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-body p + p {
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}

/* Trust logos */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--warm-gray);
}

.hero-trust-label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-logo {
  background: var(--warm-gray);
  border-radius: 5px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* Hero card (testimonial) */
.hero-card {
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-radius: 16px;
  padding: 40px;
  max-width: 380px;
  width: calc(100% - 80px);
  box-shadow:
    0 4px 32px rgba(28, 26, 23, 0.08),
    0 1px 4px rgba(28, 26, 23, 0.04);
  border: 1px solid var(--warm-gray);
}

.hero-card-quote {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.hero-card-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.author-role {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 1px;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--warm-gray);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* ── HERO — Split Dark ── */
.hero-split-dark {
  padding-top: 68px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.hero-split-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(235, 0, 125, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 0, 125, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-split-dark::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(235, 0, 125, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-split-dark .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-split-dark .hero-eyebrow {
  color: var(--accent-light);
}
.hero-split-dark .hero-headline {
  color: var(--cream);
}
.hero-split-dark .hero-headline em {
  color: var(--accent-light);
}
.hero-split-dark .hero-sub {
  color: rgba(250, 248, 244, 0.55);
}

.hero-split-dark .hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 48px;
  position: relative;
  z-index: 2;
  gap: 12px;
}

.hero-right-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.3);
  margin-bottom: 4px;
}

/* Uptime badge */
.hero-uptime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(250, 248, 244, 0.6);
  font-weight: 300;
}

.uptime-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--status-green);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Built-for chips */
.hero-for {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-for-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.3);
  flex-shrink: 0;
}

.for-chip {
  font-size: 12.5px;
  color: rgba(250, 248, 244, 0.6);
  font-weight: 300;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.2s,
    color 0.2s;
}

.for-chip:hover {
  border-color: rgba(235, 0, 125, 0.3);
  color: var(--accent-light);
}

/* Trust cards (hero right panel) */
.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 26px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.trust-card:hover {
  background: rgba(235, 0, 125, 0.07);
  border-color: rgba(235, 0, 125, 0.2);
}

.trust-card-quote {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(250, 248, 244, 0.8);
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.trust-card-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}

.trust-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tca-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(235, 0, 125, 0.15);
  border: 1px solid rgba(235, 0, 125, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
  flex-shrink: 0;
}

.tca-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 248, 244, 0.7);
}
.tca-role {
  font-size: 11.5px;
  color: rgba(250, 248, 244, 0.35);
  margin-top: 1px;
  font-weight: 300;
}

/* Signal cards (AI hero) */
.signal-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.signal-card:hover {
  background: rgba(235, 0, 125, 0.08);
  border-color: rgba(235, 0, 125, 0.3);
}

.signal-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(235, 0, 125, 0.15);
  border: 1px solid rgba(235, 0, 125, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.signal-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.signal-desc {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.45);
  line-height: 1.5;
  font-weight: 300;
}

.signal-status {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(235, 0, 125, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(235, 0, 125, 0.2);
  align-self: flex-start;
}

/* Dashboard cards (Hosting hero) */
.dash-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.dash-card:hover {
  background: rgba(235, 0, 125, 0.07);
  border-color: rgba(235, 0, 125, 0.2);
}

.dashboard-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.3);
  margin-bottom: 8px;
}

.dash-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(235, 0, 125, 0.12);
  border: 1px solid rgba(235, 0, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dash-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}
.dash-sub {
  font-size: 12px;
  color: rgba(250, 248, 244, 0.4);
  font-weight: 300;
}

.dash-status {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-green {
  background: rgba(74, 222, 128, 0.12);
  color: var(--status-green);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.status-pink {
  background: rgba(235, 0, 125, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(235, 0, 125, 0.2);
}

/* ── HERO — Split Light ── */
.hero-split-light {
  padding-top: 68px;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.hero-split-light .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  border-right: 1px solid var(--warm-gray);
}

.hero-split-light .hero-right {
  background: var(--cream-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px;
  gap: 14px;
}

.hero-proof {
  padding-top: 36px;
  border-top: 1px solid var(--warm-gray);
  display: flex;
  gap: 40px;
}

.proof-number {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 4px;
}

.proof-label {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.4;
  font-weight: 300;
}

.proof-divider {
  width: 1px;
  background: var(--warm-gray);
  align-self: stretch;
}

.panel-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

/* Spec rows (Websites hero right) */
.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--warm-gray);
}

.spec-row:first-of-type {
  border-top: 1px solid var(--warm-gray);
}

.spec-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.spec-detail {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 300;
}

/* SERP preview (SEO hero right) */
.serp-card {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  padding: 22px 24px;
}

.serp-url {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 6px;
}

.serp-favicon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.serp-title {
  font-size: 16px;
  font-weight: 500;
  color: #1558d6;
  margin-bottom: 6px;
  line-height: 1.3;
}

.serp-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  font-weight: 300;
}
.serp-desc strong {
  font-weight: 500;
  color: var(--text-dark);
}

/* Schema snippet */
.schema-card {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  padding: 20px 24px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
  overflow: hidden;
}

.schema-key {
  color: #c2185b;
}
.schema-val {
  color: #1565c0;
}

.schema-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
  display: block;
}

/* Signal chips row */
.signal-row {
  display: flex;
  gap: 8px;
}

.signal-chip {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 9px;
  padding: 14px 16px;
  text-align: center;
  transition: background 0.2s;
}

.signal-chip:hover {
  background: var(--accent-pale);
}

.signal-chip-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.signal-chip-label {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.3;
  font-weight: 300;
}

/* Funnel visual (CRO hero right) */
.funnel-card {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  padding: 24px;
}

.funnel-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.funnel-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.funnel-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.funnel-step-label {
  font-size: 12.5px;
  color: var(--text-mid);
  font-weight: 300;
  width: 110px;
  flex-shrink: 0;
}

.funnel-bar-track {
  flex: 1;
  height: 28px;
  background: var(--cream-mid);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.funnel-bar-fill {
  height: 100%;
  border-radius: 5px;
  background: var(--accent);
  opacity: 0.15;
}

.funnel-bar-fill.highlight {
  opacity: 0.9;
}

.funnel-pct {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  width: 38px;
  text-align: right;
  flex-shrink: 0;
}

.funnel-drop {
  font-size: 11px;
  font-weight: 500;
  background: rgba(229, 62, 62, 0.08);
  color: var(--status-red);
  padding: 2px 8px;
  border-radius: 10px;
  width: 52px;
  text-align: center;
  flex-shrink: 0;
}

.funnel-drop.good {
  color: var(--status-green);
  background: rgba(56, 161, 105, 0.08);
}

/* Insight cards row */
.insight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.insight-card {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 10px;
  padding: 16px 18px;
  transition: background 0.2s;
}

.insight-card:hover {
  background: var(--accent-pale);
}

.insight-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.insight-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insight-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.insight-label {
  font-size: 11.5px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.3;
}

/* ── Context Strip ── */
.context-strip {
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.context-strip--dark {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.context-strip--dark::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(235, 0, 125, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.context-strip--accent-pale {
  background: var(--accent-pale);
  border-top: 1px solid rgba(235, 0, 125, 0.12);
  border-bottom: 1px solid rgba(235, 0, 125, 0.12);
}
.context-strip--cream-mid {
  background: var(--cream-mid);
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}

.context-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.context-headline em {
  font-style: italic;
  color: var(--accent);
}
.context-strip--dark .context-headline {
  color: var(--cream);
}
.context-strip--dark .context-headline em {
  color: var(--accent-light);
}

.context-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.context-body p + p {
  margin-top: 16px;
}
.context-strip--dark .context-body {
  color: rgba(250, 248, 244, 0.55);
}

/* ── Pain Points ── */
.problem {
  padding: 100px 80px;
  background: var(--cream);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: sticky;
  top: 100px;
}

.problem-headline em {
  font-style: italic;
  color: var(--accent);
}

.problem-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  position: sticky;
  top: 200px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pain-item {
  background: var(--cream-mid);
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid var(--warm-gray);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  transition:
    background 0.22s,
    border-color 0.22s;
}

.pain-item:hover {
  background: var(--accent-pale);
  border-color: rgba(235, 0, 125, 0.15);
}

.pain-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(235, 0, 125, 0.08);
  border: 1px solid rgba(235, 0, 125, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.pain-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── Feature Grid ── */
.feature-grid-section {
  padding: 100px 80px;
}
.feature-grid-section--cream {
  background: var(--cream);
}
.feature-grid-section--cream-mid {
  background: var(--cream-mid);
}

.fg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.fg-intro {
  font-size: 15.5px;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.65;
  font-weight: 300;
  text-align: right;
}

.fg-grid {
  display: grid;
  gap: 2px;
  background: var(--warm-gray);
  border-radius: 12px;
  overflow: hidden;
}
.fg-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.fg-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.fg-card {
  background: var(--cream);
  padding: 44px 38px;
  transition: background 0.22s;
}
.fg-card:hover {
  background: #fff;
}

/* Accent card — bright pink bg (used on agencies "What You Get" grid) */
.fg-card.accent-card {
  background: var(--accent);
}
.fg-card.accent-card .fg-num {
  color: rgba(255, 255, 255, 0.5);
}
.fg-card.accent-card .fg-title {
  color: #fff;
}
.fg-card.accent-card .fg-body {
  color: rgba(255, 255, 255, 0.7);
}

/* Quote card — accent-pale bg with dark text (used on homepage services grid) */
.fg-card.quote-card {
  background: var(--accent-pale);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fg-card.quote-card .fg-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.fg-card.quote-card .fg-body {
  font-size: 13px;
  color: var(--text-light);
}

.fg-card.quote-card:hover {
  background: var(--accent-pale);
}

.fg-num {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.fg-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.fg-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fg-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.fg-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

.fg-points {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--warm-gray);
}

.fg-point {
  font-size: 12.5px;
  color: var(--text-light);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fg-point::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.45;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

/* ── Who Cards ── */
.who {
  padding: 100px 80px;
  background: var(--cream);
}

.who-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.who-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--warm-gray);
  border-radius: 16px;
  overflow: hidden;
}

.who-card {
  background: var(--cream);
  padding: 48px 40px;
  transition: background 0.22s;
}
.who-card:hover {
  background: var(--accent-pale);
}

.who-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.who-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-type {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.who-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}

.who-signals {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 20px;
  border-top: 1px solid var(--warm-gray);
}

.who-signal {
  font-size: 12.5px;
  color: var(--text-light);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}
.who-signal::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.45;
}

/* ── Process Steps ── */
.process-steps-section {
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.process-steps--dark {
  background: var(--dark-bg);
}
.process-steps--dark::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(235, 0, 125, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.process-steps--dark .section-eyebrow {
  color: var(--accent-light);
}
.process-steps--cream {
  background: var(--cream);
}
.process-steps--cream-mid {
  background: var(--cream-mid);
}

.process-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  max-width: 520px;
}

.process-steps--dark .process-title {
  color: var(--cream);
}
.process-steps--dark .process-title em {
  color: var(--accent-light);
}
.process-title em {
  font-style: italic;
  color: var(--accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.process-steps--dark .process-grid {
  background: rgba(255, 255, 255, 0.05);
}
.process-steps--cream .process-grid,
.process-steps--cream-mid .process-grid {
  background: var(--warm-gray);
}

.process-step {
  padding: 40px 34px;
  transition: background 0.25s;
}

.process-steps--dark .process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.process-steps--dark .process-step:hover {
  background: rgba(235, 0, 125, 0.07);
}
.process-steps--cream .process-step,
.process-steps--cream-mid .process-step {
  background: var(--cream);
}
.process-steps--cream .process-step:hover,
.process-steps--cream-mid .process-step:hover {
  background: var(--accent-pale);
}

.step-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  opacity: 0.7;
}
.process-steps--dark .step-num {
  color: var(--accent-light);
}
.process-steps--cream .step-num,
.process-steps--cream-mid .step-num {
  color: var(--accent);
}

.step-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.process-steps--dark .step-title {
  color: var(--cream);
}

.step-body {
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 300;
}
.process-steps--dark .step-body {
  color: rgba(250, 248, 244, 0.4);
}
.process-steps--cream .step-body,
.process-steps--cream-mid .step-body {
  color: var(--text-mid);
}

/* Tools row */
.tools-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.tools-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.3);
  flex-shrink: 0;
}
.tool-pill {
  font-size: 12.5px;
  color: rgba(250, 248, 244, 0.5);
  font-weight: 300;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.tool-pill:hover {
  border-color: rgba(235, 0, 125, 0.3);
  color: var(--accent-light);
}

/* Circles style (homepage) */
.process-circles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-circles::before {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.15) 80%,
    transparent
  );
}

.process-steps--cream .process-circles::before,
.process-steps--cream-mid .process-circles::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--warm-gray) 20%,
    var(--warm-gray) 80%,
    transparent
  );
}

.process-circle-step {
  padding: 0 32px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  margin-bottom: 28px;
}

.process-steps--dark .step-number {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent-light);
}

.process-steps--cream .step-number,
.process-steps--cream-mid .step-number {
  background: var(--accent-pale);
  border: 1px solid rgba(235, 0, 125, 0.15);
  color: var(--accent);
}

.process-steps--circles .process-title {
  margin-bottom: 0;
}

/* ── Testimonials Grid ── */
.testimonials {
  padding: 100px 80px;
}
.testimonials--cream-mid {
  background: var(--cream-mid);
}
.testimonials--cream {
  background: var(--cream);
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}
.testimonials-note {
  font-size: 13.5px;
  color: var(--text-light);
  font-weight: 300;
  max-width: 280px;
  line-height: 1.6;
  text-align: right;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--warm-gray);
  border-radius: 16px;
  overflow: hidden;
}

.testi-card {
  background: var(--cream);
  padding: 44px 40px;
  transition: background 0.22s;
}
.testi-card:hover {
  background: #fff;
}

.testi-card.featured {
  background: var(--dark-bg);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.testi-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}

.testi-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2.5px;
  background: var(--accent);
  border-radius: 2px;
}

.testi-card.featured .testi-quote {
  font-size: 22px;
  color: rgba(250, 248, 244, 0.88);
  margin-bottom: 0;
  padding-left: 0;
}
.testi-card.featured .testi-quote::before {
  display: none;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ta-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}
.testi-card.featured .ta-avatar {
  background: rgba(235, 0, 125, 0.2);
  border: 1.5px solid rgba(235, 0, 125, 0.3);
  color: var(--accent-light);
}

.ta-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.testi-card.featured .ta-name {
  color: var(--cream);
}
.ta-role {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 2px;
}
.testi-card.featured .ta-role {
  color: rgba(250, 248, 244, 0.4);
}

.featured-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.featured-right-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.3);
  margin-bottom: 4px;
}
.featured-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: 0.6;
}
.fp-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 248, 244, 0.55);
  font-weight: 300;
}
.fp-text strong {
  font-weight: 500;
  color: rgba(250, 248, 244, 0.8);
}

/* ── Testimonial Anchor ── */
.testimonial-anchor {
  padding: 80px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.testimonial-anchor::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(235, 0, 125, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.t-anchor-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.t-anchor-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 36px;
}
.t-anchor-quote::before {
  content: "\201C";
  display: block;
  font-size: 72px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 24px;
  font-style: normal;
}

.t-anchor-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(235, 0, 125, 0.35);
  border: 1.5px solid rgba(235, 0, 125, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  flex-shrink: 0;
}
.t-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  text-align: left;
}
.t-role {
  font-size: 12.5px;
  color: rgba(250, 248, 244, 0.45);
  margin-top: 2px;
}

/* ── Testimonial Pull ── */
.testimonial-pull {
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.testimonial-pull--accent-pale {
  background: var(--accent-pale);
  border-top: 1px solid rgba(235, 0, 125, 0.1);
  border-bottom: 1px solid rgba(235, 0, 125, 0.1);
}
.testimonial-pull--cream {
  background: var(--cream);
}

.pull-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 24px;
}
.pull-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.pull-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-left: 24px;
}
.pull-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1.5px solid rgba(235, 0, 125, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}
.pull-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.pull-role {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 1px;
}

.pull-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pull-right-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.metric-row {
  display: flex;
  gap: 3px;
  background: var(--warm-gray);
  border-radius: 10px;
  overflow: hidden;
}
.metric {
  flex: 1;
  background: var(--cream);
  padding: 20px;
  text-align: center;
}
.metric-value {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 4px;
}
.metric-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.35;
}

.pull-disclaimer {
  font-size: 12.5px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.5;
}

/* Result rows (CRO style) */
.results-panel {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.result-row {
  background: var(--cream);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(235, 0, 125, 0.1);
  gap: 16px;
}

.result-metric {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
}

.result-before-after {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.result-before {
  color: var(--text-light);
  font-weight: 300;
  text-decoration: line-through;
}
.result-arrow {
  color: var(--stone);
  font-size: 12px;
}
.result-after {
  font-weight: 500;
  color: var(--status-green);
}

.result-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 12px;
  background: rgba(56, 161, 105, 0.1);
  color: var(--status-green);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── FAQ Grid ── */
.faq-section {
  padding: 100px 80px;
}
.faq-section--cream {
  background: var(--cream);
}
.faq-section--cream-mid {
  background: var(--cream-mid);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--warm-gray);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 56px;
}

.faq-item {
  background: var(--cream);
  padding: 36px 40px;
  transition: background 0.2s;
}
.faq-item:hover {
  background: var(--accent-pale);
}

.faq-q {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 11px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq-a {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── CTA Close ── */
.cta-close {
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}
.cta-close--accent {
  background: var(--accent);
}
.cta-close--dark {
  background: var(--dark-bg);
}
.cta-close--cream {
  background: var(--cream);
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}

.cta-close--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cta-close--split {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.cta-close--centered {
  text-align: center;
}
.cta-close-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.cta-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  position: relative;
  z-index: 2;
}
.cta-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}
.cta-close--centered .cta-sub {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.cta-close--centered .cta-actions {
  justify-content: center;
}

.cta-reassurance {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

/* Cream variant — dark text */
.cta-close--cream .cta-headline {
  color: var(--text-dark);
}
.cta-close--cream .cta-headline em {
  color: var(--accent);
}
.cta-close--cream .cta-sub {
  color: var(--text-light);
}
.cta-close--cream .cta-eyebrow {
  color: var(--accent);
}
.cta-close--cream .cta-reassurance {
  color: var(--text-light);
}

/* ── Delivery Modes ── */
.delivery {
  padding: 100px 80px;
}
.delivery--cream {
  background: var(--cream);
}
.delivery--cream-mid {
  background: var(--cream-mid);
}

.delivery-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.delivery-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

.delivery-grid {
  display: grid;
  gap: 3px;
  background: var(--warm-gray);
  border-radius: 16px;
  overflow: hidden;
}

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

.del-card {
  background: var(--cream);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: background 0.22s;
}
.del-card:hover {
  background: #fff;
}
.del-card.featured {
  background: var(--dark-bg);
}
.del-card.featured:hover {
  background: #271020;
}

.del-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.del-card.featured .del-tag {
  background: rgba(235, 0, 125, 0.15);
  color: var(--accent-light);
}

.del-title {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.del-title em {
  font-style: italic;
  color: var(--accent);
}
.del-card.featured .del-title {
  color: var(--cream);
}
.del-card.featured .del-title em {
  color: var(--accent-light);
}

.del-body {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  flex: 1;
  margin-bottom: 28px;
}
.del-card.featured .del-body {
  color: rgba(250, 248, 244, 0.5);
}

.del-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--warm-gray);
}
.del-card.featured .del-includes {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.del-include {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 9px;
}
.del-card.featured .del-include {
  color: rgba(250, 248, 244, 0.5);
}
.del-include::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.5;
}

/* Featured layout (Websites page) */
.build-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--warm-gray);
  margin-bottom: 3px;
}

.build-feature-left {
  padding: 60px 56px;
  border-right: 1px solid var(--warm-gray);
}

.build-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.build-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.build-title em {
  font-style: italic;
  color: var(--accent);
}

.build-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 32px;
}

.build-feature-right {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.build-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.build-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.build-point-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.build-point-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.build-point-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.55;
  font-weight: 300;
}

/* Secondary cards row */
.build-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.rebuild-card {
  background: var(--cream);
  padding: 52px 52px;
  border: 1px solid var(--warm-gray);
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.rebuild-card:first-child {
  border-radius: 0 0 0 16px;
}
.rebuild-card:last-child {
  border-radius: 0 0 16px 0;
}

.rebuild-card:hover {
  background: #fff;
}

.rebuild-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s;
}

.rebuild-card:hover::before {
  opacity: 1;
}

.rebuild-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.8;
}

.rebuild-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.rebuild-body {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 28px;
}

.rebuild-outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rebuild-outcome {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 9px;
}

.rebuild-outcome::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── Service Rows ── */
.services-detail {
  padding: 100px 80px;
}
.services-detail--cream-mid {
  background: var(--cream-mid);
}
.services-detail--cream {
  background: var(--cream);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.services-note {
  font-size: 14.5px;
  color: var(--text-light);
  max-width: 300px;
  line-height: 1.65;
  font-weight: 300;
  text-align: right;
}

.services-pillars {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--cream);
  overflow: hidden;
  border: 1px solid var(--warm-gray);
  transition: box-shadow 0.22s;
}
.service-row:first-child {
  border-radius: 16px 16px 0 0;
}
.service-row:last-child {
  border-radius: 0 0 16px 16px;
}
.service-row:hover {
  box-shadow: 0 4px 24px rgba(28, 26, 23, 0.06);
  position: relative;
  z-index: 2;
}

.service-row-left {
  padding: 44px 40px;
  border-right: 1px solid var(--warm-gray);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.service-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-row-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-row-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.service-row-tag {
  font-size: 11.5px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.service-row-right {
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.service-row-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

.service-row-checklist {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.checklist-item {
  font-size: 13.5px;
  color: var(--text-mid);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.checklist-tick {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist-tick svg {
  width: 8px;
  height: 8px;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ── Pillars ── */
.pillars {
  padding: 100px 80px;
  background: var(--cream);
}

.pillars-header {
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.pillars-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 300px;
  line-height: 1.65;
  font-weight: 300;
  text-align: right;
}

.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-mid);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3px;
  border: 1px solid var(--warm-gray);
  transition: box-shadow 0.25s;
}
.pillar:hover {
  box-shadow: 0 8px 40px rgba(28, 26, 23, 0.07);
}

.pillar-left {
  padding: 52px 56px;
  background: var(--cream);
}
.pillar-number {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  color: var(--accent-pale);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.pillar-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.pillar-title em {
  font-style: italic;
  color: var(--accent);
}
.pillar-intro {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

.pillar-right {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.pillar-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
  opacity: 0.5;
}
.pillar-feature-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}
.pillar-feature-text strong {
  font-weight: 500;
  color: var(--text-dark);
}

/* ── Packages Grid ── */
.packages {
  padding: 100px 80px;
  background: var(--cream);
}

.packages-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.packages-note {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  max-width: 280px;
  line-height: 1.6;
  text-align: right;
}

.packages-grid {
  display: grid;
  gap: 3px;
  background: var(--warm-gray);
  border-radius: 16px;
  overflow: hidden;
}

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

.package-card {
  background: var(--cream);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.22s;
}
.package-card:hover {
  background: #fff;
}
.package-card.featured {
  background: var(--dark-bg);
}
.package-card.featured:hover {
  background: #271020;
}

.package-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(235, 0, 125, 0.15);
  border: 1px solid rgba(235, 0, 125, 0.25);
  padding: 4px 10px;
  border-radius: 20px;
}
.package-tier {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.package-card.featured .package-tier {
  color: rgba(250, 248, 244, 0.4);
}

.package-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.package-card.featured .package-name {
  color: var(--cream);
}

.package-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 32px;
  flex: 1;
}
.package-card.featured .package-desc {
  color: rgba(250, 248, 244, 0.5);
}

.package-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--warm-gray);
}
.package-card.featured .package-includes {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.package-include {
  font-size: 13.5px;
  color: var(--text-mid);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-card.featured .package-include {
  color: rgba(250, 248, 244, 0.6);
}

.include-tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.package-card.featured .include-tick {
  background: rgba(235, 0, 125, 0.2);
}
.include-tick svg {
  width: 9px;
  height: 9px;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.package-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid var(--warm-gray);
  color: var(--text-mid);
  background: transparent;
}
.package-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.package-card.featured .package-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.package-card.featured .package-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.packages-footer-note {
  margin-top: 28px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-light);
  font-weight: 300;
}

/* ── Agency Dark Section ── */
.agency-dark {
  padding: 80px;
  background: var(--dark-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.agency-dark::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 440px;
  height: 440px;
  background: radial-gradient(
    circle,
    rgba(235, 0, 125, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.agency-dark-left {
  position: relative;
  z-index: 2;
}
.agency-dark-eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.agency-dark-headline {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 20px;
}
.agency-dark-headline em {
  font-style: italic;
  color: var(--accent-light);
}
.agency-dark-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(250, 248, 244, 0.5);
  font-weight: 300;
  margin-bottom: 36px;
}

.agency-dark-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.acro-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.acro-item:hover {
  background: rgba(235, 0, 125, 0.07);
  border-color: rgba(235, 0, 125, 0.2);
}

.acro-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(235, 0, 125, 0.12);
  border: 1px solid rgba(235, 0, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acro-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.acro-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}
.acro-desc {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.4);
  line-height: 1.55;
  font-weight: 300;
}

.acro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
  opacity: 0.7;
}

/* ── Reseller Section ── */
.reseller {
  padding: 100px 80px;
  background: var(--accent-pale);
  border-top: 1px solid rgba(235, 0, 125, 0.1);
  border-bottom: 1px solid rgba(235, 0, 125, 0.1);
}

.reseller-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reseller-headline {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.reseller-headline em {
  font-style: italic;
  color: var(--accent);
}
.reseller-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
.reseller-body p + p {
  margin-top: 14px;
}

.reseller-benefits {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.reseller-benefit {
  background: var(--cream);
  border-radius: 10px;
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(235, 0, 125, 0.1);
  transition: box-shadow 0.2s;
}
.reseller-benefit:hover {
  box-shadow: 0 4px 20px rgba(235, 0, 125, 0.08);
}

.rb-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-pale);
  border: 1px solid rgba(235, 0, 125, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rb-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rb-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.rb-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.55;
  font-weight: 300;
}

/* ── Agency Value Grid ── */
.agency-value {
  padding: 100px 80px;
  background: var(--cream-mid);
}

.agency-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--warm-gray);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 60px;
}

.av-card {
  background: var(--cream);
  padding: 44px 36px;
  transition: background 0.2s;
}
.av-card:hover {
  background: var(--accent-pale);
}
.av-card--quote {
  background: var(--accent-pale);
}

.av-number {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.av-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.av-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
}

.av-quote-text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.av-quote-attr {
  font-size: 13px;
  color: var(--text-light);
}

/* ── Portfolio Grid ── */
.portfolio-strip {
  padding: 100px 80px;
  background: var(--cream);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}
.portfolio-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 320px;
  line-height: 1.65;
  font-weight: 300;
  flex-shrink: 0;
  text-align: right;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-grid .portfolio-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.portfolio-grid .portfolio-item--featured {
  grid-column: span 2;
  aspect-ratio: unset;
  min-height: 260px;
}

.portfolio-grid .portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.05em;
  min-height: 220px;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.3s;
}

.portfolio-grid .portfolio-item:hover .portfolio-overlay {
  background: rgba(28, 26, 23, 0.6);
}

.portfolio-label {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.portfolio-grid .portfolio-item:hover .portfolio-label {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item.no-link { cursor: default; }
.portfolio-item.no-link .portfolio-overlay { display: none; }
.portfolio-item.no-link:hover { box-shadow: none; transform: none; }

.portfolio-footer {
  text-align: center;
  margin-top: 40px;
}

/* ── Trust Bar ── */
.trust-bar {
  padding: 28px 80px;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
.trust-bar-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.trust-items {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.5);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Tool Strip ── */
.tools-strip {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.tools-strip--cream-mid {
  background: var(--cream-mid);
}
.tools-strip-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  flex-shrink: 0;
}
.tools-divider {
  width: 1px;
  height: 20px;
  background: var(--warm-gray);
  flex-shrink: 0;
}
.tool-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 14px;
  border-radius: 8px;
  background: var(--cream-mid);
  border: 1px solid var(--warm-gray);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.tool-chip:hover {
  background: var(--accent-pale);
  border-color: rgba(235, 0, 125, 0.2);
  color: var(--accent);
}
.tool-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── WPMU Strip ── */
.wpmu-strip {
  padding: 72px 80px;
  background: var(--cream-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}
.wpmu-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.wpmu-headline em {
  font-style: italic;
  color: var(--accent);
}
.wpmu-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
.wpmu-body p + p {
  margin-top: 14px;
}

.wpmu-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--warm-gray);
  border-radius: 12px;
  overflow: hidden;
}
.wpmu-tool {
  background: var(--cream);
  padding: 22px 24px;
  transition: background 0.2s;
}
.wpmu-tool:hover {
  background: var(--accent-pale);
}
.wpmu-tool-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.wpmu-tool-desc {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 300;
}

/* ── Rank Math Strip ── */
.rankmath-strip {
  padding: 72px 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}
.rm-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.rm-headline em {
  font-style: italic;
  color: var(--accent);
}
.rm-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
.rm-body p + p {
  margin-top: 14px;
}

.rm-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--warm-gray);
  border-radius: 12px;
  overflow: hidden;
}
.rm-feature {
  background: var(--cream);
  padding: 22px 24px;
  transition: background 0.2s;
}
.rm-feature:hover {
  background: var(--accent-pale);
}
.rm-feature-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.rm-feature-desc {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 300;
}

/* ── Direct Note ── */
.direct-note {
  padding: 64px 80px;
  background: var(--cream);
  border-top: 1px solid var(--warm-gray);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.direct-note-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.direct-note-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.direct-note-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 680px;
}
.direct-note-text strong {
  font-weight: 500;
  color: var(--text-dark);
}
.direct-note-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* ── Portfolio Page ── */
.portfolio-hero {
  padding-top: 68px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(235, 0, 125, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 0, 125, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.portfolio-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(235, 0, 125, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.portfolio-hero-inner {
  padding: 80px 80px 72px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.portfolio-hero .hero-eyebrow {
  color: var(--accent-light);
}
.portfolio-hero .hero-headline {
  color: var(--cream);
}
.portfolio-hero .hero-headline em {
  color: var(--accent-light);
}
.portfolio-hero .hero-sub {
  color: rgba(250, 248, 244, 0.5);
}

.portfolio-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  align-self: end;
}

.portfolio-hero-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
  text-align: center;
}

.portfolio-hero-stat .stat-number {
  color: var(--cream);
  font-size: 36px;
}
.portfolio-hero-stat .stat-label {
  color: rgba(250, 248, 244, 0.38);
}

/* White-label note */
.wl-note {
  margin: 0 80px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.wl-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(235, 0, 125, 0.12);
  border: 1px solid rgba(235, 0, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wl-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wl-text,
.wl-text p,
.wl-text span {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.45);
  font-weight: 300;
  line-height: 1.5;
}
.wl-text strong,
.wl-text p strong,
.wl-text b {
  color: rgba(250, 248, 244, 0.75);
  font-weight: 500;
}
.wl-text a,
.wl-text p a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 500;
}

/* Filter bar */
.filter-section {
  background: var(--cream);
  padding: 32px 80px 0;
  border-bottom: 1px solid var(--warm-gray);
  position: sticky;
  top: 68px;
  z-index: 50;
}

.filter-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-right: 8px;
  flex-shrink: 0;
}

.filter-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  background: transparent;
  border: 1.5px solid var(--warm-gray);
  border-radius: 20px;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

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

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 500;
}

.filter-count {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--text-light);
  font-weight: 300;
  flex-shrink: 0;
}

/* Portfolio grid — full page version */
.portfolio-section {
  padding: 48px 80px 100px;
  background: var(--cream);
}

.portfolio-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-grid-full .portfolio-item {
  border-radius: 12px;
  background: var(--cream);
  position: relative;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.portfolio-grid-full .portfolio-item:hover {
  box-shadow: 0 12px 48px rgba(28, 26, 23, 0.1);
  transform: translateY(-3px);
}

.portfolio-grid-full .portfolio-item.no-link {
  cursor: default;
}

.portfolio-grid-full .portfolio-item.no-link:hover {
  box-shadow: none;
  transform: none;
}

.portfolio-grid-full .portfolio-item.no-link:hover .portfolio-img-wrap img {
  transform: none;
}

.portfolio-grid-full .portfolio-item.featured {
  grid-column: span 2;
}
.portfolio-grid-full .portfolio-item.hidden {
  display: none;
}

.portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 1861/1425;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-radius: 11px 11px 0 0;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-grid-full .portfolio-item:hover .portfolio-img-wrap img {
  transform: scale(1.03);
}

.portfolio-grid-full .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 26, 23, 0.75) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-grid-full .portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-cta {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.overlay-cta::after {
  content: "\2192";
  font-size: 15px;
}

.portfolio-info {
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream);
}

.portfolio-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}
.portfolio-type {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 2px;
}

.portfolio-tags {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portfolio-tag {
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 10px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.tag-saas {
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
}
.tag-health {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.tag-ecomm {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.tag-agency {
  background: rgba(235, 0, 125, 0.1);
  color: var(--accent);
}
.tag-benefits {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}
.tag-food {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.tag-legal {
  background: rgba(107, 114, 128, 0.1);
  color: #4b5563;
}
.tag-build {
  background: rgba(180, 83, 9, 0.1);
  color: #92400e;
}
.tag-arts {
  background: rgba(168, 85, 247, 0.1);
  color: #7c3aed;
}
.tag-insurance {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}
.tag-nonprofit {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.empty-state {
  display: none;
  grid-column: span 3;
  text-align: center;
  padding: 80px 40px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 300;
}

/* Process strip */
.process-strip {
  padding: 80px;
  background: var(--dark-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.process-strip::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(235, 0, 125, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.ps-eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.ps-headline {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 16px;
}
.ps-headline em {
  font-style: italic;
  color: var(--accent-light);
}

.ps-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(250, 248, 244, 0.5);
  font-weight: 300;
  margin-bottom: 32px;
}

.ps-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 2;
}

.ps-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.ps-item:hover {
  background: rgba(235, 0, 125, 0.07);
  border-color: rgba(235, 0, 125, 0.2);
}

.ps-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
  opacity: 0.6;
  flex-shrink: 0;
  width: 20px;
  margin-top: 1px;
}
.ps-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 3px;
}
.ps-item-desc {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.4);
  line-height: 1.55;
  font-weight: 300;
}

/* ── Contact Page ── */
.contact-page {
  padding-top: 68px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.intro-panel {
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 68px);
}
.intro-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(235, 0, 125, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 0, 125, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.intro-panel::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(235, 0, 125, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.intro-top {
  position: relative;
  z-index: 2;
}

.intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 28px;
}
.intro-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent-light);
}

.intro-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 24px;
}
.intro-headline em {
  font-style: italic;
  color: var(--accent-light);
}

.intro-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(250, 248, 244, 0.5);
  font-weight: 300;
  max-width: 400px;
}
.intro-body p + p {
  margin-top: 14px;
}

.response-promise {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 48px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.promise-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(235, 0, 125, 0.15);
  border: 1px solid rgba(235, 0, 125, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
}
.promise-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.promise-body {
  font-size: 13.5px;
  color: rgba(250, 248, 244, 0.45);
  line-height: 1.6;
  font-weight: 300;
}

.expect-list {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.expect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}
.expect-item:hover {
  background: rgba(235, 0, 125, 0.06);
}
.expect-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}
.expect-text {
  font-size: 13.5px;
  color: rgba(250, 248, 244, 0.5);
  font-weight: 300;
  line-height: 1.4;
}

.intro-bottom {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 40px;
}

.snippet-quote {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  color: rgba(250, 248, 244, 0.6);
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative;
}
.snippet-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
}

.snippet-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.snippet-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(235, 0, 125, 0.15);
  border: 1px solid rgba(235, 0, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
  flex-shrink: 0;
}
.snippet-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 248, 244, 0.6);
}
.snippet-role {
  font-size: 11.5px;
  color: rgba(250, 248, 244, 0.3);
  margin-top: 1px;
  font-weight: 300;
}

.form-panel {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  border-left: 1px solid var(--warm-gray);
}
.form-heading {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-subheading {
  font-size: 14.5px;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* ── Forminator Form ─────────────────────────────────────── */

.forminator-custom-form {
  font-family: var(--sans);
}

/* Reset Forminator's default row margins */
.forminator-custom-form .forminator-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 20px;
  margin-bottom: 20px;
}

.forminator-custom-form .forminator-row.forminator-row-last {
  margin-bottom: 0;
}

.forminator-custom-form .forminator-col-6  { grid-column: span 6; }
.forminator-custom-form .forminator-col-12 { grid-column: span 12; }

.forminator-custom-form .forminator-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Labels */
.forminator-custom-form .forminator-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.01em;
}

.forminator-custom-form .forminator-required {
  color: var(--accent);
  margin-left: 2px;
}

/* Text inputs & textarea */
.forminator-custom-form .forminator-input,
.forminator-custom-form .forminator-textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--warm-gray);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.forminator-custom-form .forminator-input:focus,
.forminator-custom-form .forminator-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(235, 0, 125, 0.08);
}

.forminator-custom-form .forminator-input::placeholder,
.forminator-custom-form .forminator-textarea::placeholder {
  color: var(--stone);
}

.forminator-custom-form .forminator-textarea {
  resize: vertical;
}

/* Select2 — scoped to form container */
.forminator-custom-form .select2-container {
  width: 100%;
}

.forminator-custom-form .select2-selection--single {
  height: auto;
  min-height: 0;
  background: var(--cream);
  border: 1.5px solid var(--warm-gray);
  border-radius: 8px;
  padding: 12px 40px 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
}

.forminator-custom-form .select2-container--open .select2-selection--single,
.forminator-custom-form .select2-container--focus .select2-selection--single {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(235, 0, 125, 0.08);
}

.forminator-custom-form .select2-selection__rendered {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-dark);
  padding: 0;
  line-height: 1.5;
}

.forminator-custom-form .select2-selection__placeholder {
  color: var(--stone);
}

.forminator-custom-form .select2-selection__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
}

/* Select2 dropdown — renders at body level so unscoped */
.select2-dropdown {
  background: var(--cream);
  border: 1.5px solid var(--warm-gray);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(28, 26, 23, 0.12);
  font-family: var(--sans);
  overflow: hidden;
}

.select2-results__option {
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 16px;
  transition: background 0.15s;
}

.select2-results__option--highlighted {
  background: var(--cream-mid);
  color: var(--text-dark);
}

.select2-results__option[aria-selected="true"] {
  background: var(--accent-pale);
  color: var(--accent);
}

/* Submit button */
.forminator-custom-form .forminator-col .forminator-button-submit,
.forminator-custom-form .forminator-button-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  min-width: 0;
  box-shadow: none;
  text-transform: none;
  line-height: 1.5;
}

.forminator-custom-form .forminator-button-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  color: #fff;
}

.forminator-custom-form .forminator-button-submit:active {
  transform: translateY(0);
}

/* Validation errors */
.forminator-custom-form .forminator-input.forminator-is-invalid,
.forminator-custom-form .forminator-textarea.forminator-is-invalid {
  border-color: var(--accent);
}

.forminator-custom-form .forminator-field--error .forminator-label {
  color: var(--accent);
}

.forminator-custom-form .forminator-error-message {
  font-size: 12px;
  color: var(--accent);
}

/* Response message */
.forminator-custom-form .forminator-response-message {
  font-family: var(--sans);
  font-size: 14px;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.forminator-custom-form .forminator-response-message.forminator-error {
  background: var(--accent-pale);
  color: var(--accent);
  border: 1px solid rgba(235, 0, 125, 0.2);
}

.forminator-custom-form .forminator-response-message.forminator-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

/* ── Hero — About ────────────────────────────────────────── */

.hero-about .hero-right {
  background: var(--cream-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 56px;
  gap: 28px;
}

.photo-frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background: var(--warm-gray);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--warm-gray);
  flex-shrink: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cream-mid);
}

.photo-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--stone);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-placeholder-label {
  font-size: 12px;
  color: var(--stone);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.quick-facts {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fact-row {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}

.fact-row:hover { background: var(--accent-pale); }

.fact-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.fact-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: right;
}

/* ── Origin Story ────────────────────────────────────────── */

.origin-story {
  padding: 100px 80px;
  background: var(--cream);
}

.origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.origin-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.origin-headline em {
  font-style: italic;
  color: var(--accent);
}

.origin-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}

.origin-body p { margin-bottom: 20px; }
.origin-body p:last-child { margin-bottom: 0; }

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: var(--warm-gray);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--warm-gray);
  transition: border-color 0.2s, background 0.2s;
}

.timeline-item:hover .timeline-dot {
  border-color: var(--accent);
  background: var(--accent-pale);
}

.timeline-item.milestone .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
}

.timeline-year {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  opacity: 0.8;
}

.timeline-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.timeline-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
}

/* ── Craft Stats ─────────────────────────────────────────── */

.craft-stats {
  padding: 100px 80px;
  background: var(--cream-mid);
}

.craft-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.craft-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--warm-gray);
  border-radius: 16px;
  overflow: hidden;
}

.craft-card {
  background: var(--cream);
  padding: 44px 38px;
  transition: background 0.22s;
}

.craft-card:hover { background: #fff; }

.craft-number {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--accent-pale);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: block;
}

.craft-card:hover .craft-number { color: rgba(235, 0, 125, 0.15); }

.craft-label {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.craft-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── Learning Ethos ──────────────────────────────────────── */

.learning-ethos {
  padding: 100px 80px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.learning-ethos::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(235, 0, 125, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.learning-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.learning-eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.learning-headline {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 20px;
}

.learning-headline em {
  font-style: italic;
  color: var(--accent-light);
}

.learning-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(250, 248, 244, 0.55);
  font-weight: 300;
}

.learning-body p { margin-bottom: 16px; }
.learning-body p:last-child { margin-bottom: 0; }

.learning-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learning-right-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.3);
  margin-bottom: 4px;
}

.learning-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s, border-color 0.2s;
}

.learning-item:hover {
  background: rgba(235, 0, 125, 0.08);
  border-color: rgba(235, 0, 125, 0.2);
}

.li-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(235, 0, 125, 0.12);
  border: 1px solid rgba(235, 0, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.li-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.li-text { flex: 1; min-width: 0; }

.li-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 3px;
}

.li-sub {
  font-size: 12.5px;
  color: rgba(250, 248, 244, 0.4);
  font-weight: 300;
}

.li-status {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.status-active {
  background: rgba(235, 0, 125, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(235, 0, 125, 0.2);
}

.status-ongoing {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(250, 248, 244, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Personal Note ───────────────────────────────────────── */

.personal-note {
  padding: 100px 80px;
  background: var(--accent-pale);
  border-top: 1px solid rgba(235, 0, 125, 0.1);
  border-bottom: 1px solid rgba(235, 0, 125, 0.1);
}

.personal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.personal-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  position: relative;
  padding-left: 28px;
}

.personal-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.personal-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

.personal-body p { margin-bottom: 16px; }
.personal-body p:last-child { margin-bottom: 0; }

.personal-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 28px;
}

.personal-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid rgba(235, 0, 125, 0.1);
  transition: background 0.2s;
}

.personal-detail:hover { background: #fff; }

.pd-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── WordPress Maintenance ───────────────────────────── */

.wm-section {
  padding: 100px 80px;
  background: var(--cream-mid);
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}

.wm-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.wm-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

.wm-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--warm-gray);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

.wm-panel { padding: 48px 44px; }
.wm-panel-light { background: var(--cream); }
.wm-panel-dark { background: var(--dark-bg); }

.wm-panel-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 24px;
}

.wm-panel-light .wm-panel-title { color: var(--text-dark); }
.wm-panel-dark .wm-panel-title { color: var(--cream); }

.wm-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wm-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.55;
}

.wm-tick {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1.5px solid rgba(235, 0, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.wm-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.wm-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(250, 248, 244, 0.6);
  font-weight: 300;
  line-height: 1.55;
}

.wm-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

.wm-quote {
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}

.wm-quote-text {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(250, 248, 244, 0.75);
  line-height: 1.65;
  margin-bottom: 10px;
}

.wm-quote-author {
  font-size: 12.5px;
  color: rgba(250, 248, 244, 0.35);
  font-weight: 300;
}

.wm-faq-label { color: var(--text-light); margin-bottom: 24px; }

.wm-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--warm-gray);
  border-radius: 14px;
  overflow: hidden;
}

.wm-faq-card {
  background: var(--cream);
  padding: 32px 36px;
}

.wm-faq-q {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
}

.wm-faq-a {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

@media (max-width: 992px) {
  .wm-section { padding: 64px 48px; }
  .wm-header { grid-template-columns: 1fr; gap: 24px; }
  .wm-panels { grid-template-columns: 1fr; }
  .wm-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wm-section { padding: 48px 24px; }
  .wm-panel { padding: 36px 28px; }
  .wm-faq-card { padding: 24px 28px; }
}

@media (max-width: 480px) {
  .wm-section { padding: 40px 16px; }
  .wm-panel { padding: 32px 20px; }
  .wm-faq-card { padding: 20px; }
}
