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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(61, 155, 155, 0.12) 0%, transparent 65%);
  filter: blur(40px);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 155, 155, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 155, 155, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 0%, transparent 70%);
}

/* VISUAL MOTIF: The Path — thin teal dashed line in hero */
.hero-path {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  pointer-events: none;
}

.hero-path svg {
  width: 100%;
  height: 100%;
}

/* Hero: text-dominant split (60/40) */
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(61, 155, 155, 0.08);
  border-radius: var(--radius-button);
  border: 1px solid rgba(61, 155, 155, 0.15);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-emphasis {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* Refine trust items: small teal line instead of checkmark circles */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-trust-mark {
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== BROWSER MOCKUP — VISUAL MOTIF: The Frame ===== */
.browser-mockup {
  background: var(--bg-elevated);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    rgba(255, 255, 255, 0.08) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.3) 0px 20px 60px -20px,
    rgba(61, 155, 155, 0.08) 0px 0px 0px 1px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.browser-mockup:hover {
  transform: translateY(-4px);
  box-shadow:
    rgba(255, 255, 255, 0.12) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.4) 0px 30px 80px -20px,
    rgba(61, 155, 155, 0.15) 0px 0px 0px 1px;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-standard);
}

.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.browser-dot:nth-child(1) { background: rgba(255, 95, 87, 0.6); }
.browser-dot:nth-child(2) { background: rgba(255, 189, 46, 0.6); }
.browser-dot:nth-child(3) { background: rgba(39, 201, 63, 0.6); }

.browser-url {
  margin-left: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-button);
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: var(--font-body);
}

.browser-content {
  overflow: hidden;
  aspect-ratio: 1280 / 800;
}

.browser-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.browser-mockup-lg {
  box-shadow:
    rgba(255, 255, 255, 0.08) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.3) 0px 30px 80px -20px,
    rgba(61, 155, 155, 0.06) 0px 0px 0px 1px;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
}

.hero-visual-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.badge-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.badge-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

/* ===== WHY MAUPIN MEDIA — Editorial: large statement + 3 supporting items ===== */
.why-statement {
  margin-bottom: 72px;
  max-width: 800px;
}

.why-statement .section-label {
  margin-bottom: 24px;
}

.why-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-primary);
}

.why-headline .text-accent {
  font-style: italic;
}

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
}

.why-item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

/* VISUAL MOTIF: Typographic Anchors — large Fraunces numerals */
.why-item-numeral {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  width: 120px;
  text-align: right;
}

.why-item-body {
  flex: 1;
  max-width: 560px;
}

.why-item-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.why-item-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== INDUSTRIES V4.2 — Featured cards with stronger visual treatment ===== */
.industry-featured {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition-smooth);
}

.industry-card:hover {
  background: rgba(61, 155, 155, 0.04);
  border-color: var(--border-accent);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.industry-card:hover::before {
  transform: scaleY(1);
}

.industry-card-numeral {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1.2;
  transition: opacity var(--transition-smooth);
}

.industry-card:hover .industry-card-numeral {
  opacity: 1;
}

.industry-card-body {
  flex: 1;
}

.industry-card-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text-primary);
  transition: color var(--transition-smooth);
}

.industry-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.industry-card-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
  align-self: center;
  margin-top: 4px;
}

.industry-card:hover .industry-card-cta {
  opacity: 1;
  transform: translateX(0);
}

/* "We also serve" disclosure — compact, honest */
.industry-also {
  padding: 24px 0 0;
  border-top: 1px solid var(--border-subtle);
}

.industry-also-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.industry-also-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-also-tag {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-button);
  color: var(--text-secondary);
}

.industry-also-tag-link {
  text-decoration: none;
  color: var(--accent);
  background: rgba(61, 155, 155, 0.06);
  border-color: var(--border-accent);
  transition: background var(--transition-smooth), color var(--transition-base);
}

.industry-also-tag-link:hover {
  background: rgba(61, 155, 155, 0.12);
  color: var(--accent-hover);
}

/* ===== WORK — Storytelling: featured + secondary, alternating layout ===== */
.work-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.work-story {
  display: flex;
  gap: 24px;
}

.work-story-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.25;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}

.work-story-content {
  flex: 1;
}

.work-story-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.work-story-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

/* V4.2: One-line challenge summary before the Problem/Result details */
.work-story-challenge {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--border-accent);
  font-style: italic;
}

.work-story-section {
  margin-bottom: 20px;
}

.work-story-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.work-story-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.work-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.work-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(61, 155, 155, 0.08);
  border: 1px solid rgba(61, 155, 155, 0.15);
  border-radius: var(--radius-button);
  color: var(--accent);
}

.work-visual {
  /* Container for browser mockup in work section */
}

/* Secondary case study: image left, text right (alternating) */
.work-secondary {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.work-story-sm .work-story-number {
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
}

.work-story-sm .work-story-title {
  font-size: 1.4rem;
}

.work-story-sm .work-story-text {
  font-size: 0.9rem;
}

.work-story-sm .work-story-challenge {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.work-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===== PROCESS V4.2 — Darker background, prominent path, large numerals (5rem+) ===== */
.process-header {
  position: relative;
  z-index: 2;
}

/* VISUAL MOTIF: The Path — prominent vertical teal line connecting all steps */
.process-journey {
  position: absolute;
  left: 50%;
  top: 220px;
  bottom: 100px;
  width: 2px;
  margin-left: -1px;
  pointer-events: none;
  z-index: 0;
}

.process-journey-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(61, 155, 155, 0.05) 0%,
    rgba(61, 155, 155, 0.3) 15%,
    rgba(61, 155, 155, 0.3) 85%,
    rgba(61, 155, 155, 0.05) 100%
  );
}

.process-journey-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow-strong);
}

.process-journey-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow-strong);
}

.process-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* V4.2: Each step is a full-width row with numeral, body, and a marker dot on the path */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 32px 0;
  position: relative;
}

/* Marker dot sits on the central path line */
.process-step-marker {
  position: absolute;
  left: 50%;
  top: 48px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-deepest);
  border: 2px solid var(--accent);
  z-index: 2;
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.process-step:hover .process-step-marker {
  box-shadow: 0 0 16px var(--accent-glow-strong);
  transform: translateX(-50%) scale(1.3);
}

/* V4.2: Numerals are 5rem+ and positioned beside the body */
.process-step-numeral {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.25;
  letter-spacing: -0.05em;
  line-height: 1;
  flex-shrink: 0;
  width: 180px;
  text-align: right;
  transition: opacity var(--transition-smooth);
}

.process-step:hover .process-step-numeral {
  opacity: 0.6;
}

/* V4.2: Odd steps align left, even steps align right (alternating journey) */
.process-step:nth-child(odd) {
  justify-content: flex-start;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.process-step:nth-child(even) .process-step-numeral {
  text-align: left;
}

.process-step-body {
  flex: 1;
  max-width: 420px;
  padding-top: 20px;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.process-step-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.process-cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

/* ===== PRICING — Comparison-style layout ===== */
.pricing-comparison {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-panel);
  overflow: hidden;
  margin-bottom: 32px;
}

.pricing-comparison-header,
.pricing-comparison-row,
.pricing-comparison-cta {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  align-items: center;
}

.pricing-comparison-header {
  border-bottom: 2px solid var(--border-standard);
}

.pricing-col-header {
  padding: 24px 20px;
}

.pricing-col-name {
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.pricing-col-name h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-col-tagline {
  font-size: 12px;
  color: var(--text-secondary);
}

.pricing-col-featured {
  background: rgba(61, 155, 155, 0.06);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-base);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 0 0 var(--radius-button) var(--radius-button);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing-comparison-row {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-base);
}

.pricing-comparison-row:hover {
  background: rgba(255, 255, 255, 0.015);
}

.pricing-price-row {
  border-bottom: 2px solid var(--border-standard);
}

.pricing-col-label {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-col-value {
  padding: 20px 16px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.02em;
}

.pricing-col-value-featured {
  color: var(--accent);
}

.pricing-col-feature {
  padding: 16px;
  text-align: center;
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
}

.pricing-col-na {
  color: var(--text-tertiary);
  font-weight: 300;
}

.pricing-comparison-cta {
  padding-top: 8px;
}

.pricing-col-cta {
  padding: 20px 16px;
}

.pricing-col-cta-featured {
  background: rgba(61, 155, 155, 0.04);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
}

/* Care plans — single highlighted block, not cards */
.pricing-care-block {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 36px;
  background: rgba(61, 155, 155, 0.04);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-panel);
  flex-wrap: wrap;
}

.pricing-care-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(61, 155, 155, 0.1);
  border-radius: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-care-content {
  flex: 1;
  min-width: 280px;
}

.pricing-care-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pricing-care-title .text-accent {
  font-style: italic;
}

.pricing-care-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.pricing-care-desc strong {
  color: var(--accent);
  font-weight: 600;
}

/* ===== COVENANT V4.2 — Tightened spacing, contained width, intentional structure ===== */
.covenant-container {
  max-width: 960px;
}

.covenant-header {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 640px;
}

.covenant-header .section-label {
  justify-content: center;
}

.covenant-header .section-label::before {
  display: none;
}

.covenant-promises {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.covenant-promise {
  text-align: center;
  max-width: 640px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}

.covenant-promise:last-child {
  border-bottom: none;
}

/* VISUAL MOTIF: Typographic Anchors — large Roman numerals */
.covenant-promise-numeral {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1;
}

.covenant-promise-text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.covenant-promise-detail {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

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

.covenant-more {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ===== CONTACT ===== */
.contact-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-standard);
  border-radius: 24px;
  padding: 64px 48px;
  overflow: hidden;
  transition: border-color var(--transition-smooth);
}

.contact-wrapper:hover {
  border-color: var(--border-accent);
}

.contact-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(61, 155, 155, 0.08) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 20px;
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-panel);
  text-decoration: none;
  color: var(--text-primary);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth);
}

.contact-method:hover {
  background: rgba(61, 155, 155, 0.06);
  border-color: var(--border-accent);
  transform: translateX(4px);
  color: var(--text-primary);
}

.contact-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(61, 155, 155, 0.1);
  border-radius: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-method-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-method-label {
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-method-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Andrew attribution */
.contact-attribution {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.contact-signature {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.contact-role {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}


/* ===== PAGE-SPECIFIC RESPONSIVE ===== */
/* ===== RESPONSIVE ===== */

/* Desktop large (1280px+) */
@media (min-width: 1281px) {
  .hero-container {
    gap: 80px;
  }
}

/* Tablet / smaller desktop (1024px) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  /* Work: stack featured */
  .work-featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-secondary {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* V4.2: Process — remove alternating, go left-aligned with path on left side */
  .process-journey {
    left: 90px;
    top: 220px;
    bottom: 100px;
  }

  .process-step:nth-child(even) {
    flex-direction: row;
    text-align: left;
  }

  .process-step:nth-child(even) .process-step-numeral {
    text-align: right;
  }

  .process-step-marker {
    left: 90px;
  }

  /* Pricing: keep 4-col on tablet */
  .pricing-comparison-header,
  .pricing-comparison-row,
  .pricing-comparison-cta {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  /* Covenant spacing reduced */
  .covenant-promises {
    gap: 32px;
  }

  .why-item-numeral {
    width: 80px;
    font-size: 3rem;
  }

  .why-item {
    gap: 32px;
  }

  /* Industries: 2-col on tablet */
  .industry-featured {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (768px and below — nav collapse, significant editing) */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }







  /* V4.2: Hero — intentionally edited for mobile */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-description {
    font-size: 1rem;
  }

  /* V4.2: Why Us — stack numerals above text */
  .why-statement {
    margin-bottom: 48px;
  }

  .why-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .why-item {
    flex-direction: column;
    gap: 12px;
    padding: 32px 0;
  }

  .why-item-numeral {
    width: auto;
    text-align: left;
    font-size: 2.5rem;
  }

  .why-item-body {
    max-width: 100%;
  }

  /* V4.2: Industries — single column on mobile, descriptions always visible */
  .industry-featured {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  .industry-card {
    padding: 20px 16px;
    gap: 16px;
  }

  .industry-card-numeral {
    font-size: 1.2rem;
  }

  .industry-card-name {
    font-size: 1.2rem;
  }

  .industry-card-cta {
    display: none;
  }

  .industry-also {
    padding-top: 20px;
  }

  .industry-also-tag {
    font-size: 13px;
    padding: 5px 14px;
  }

  /* V4.2: Work — stack and simplify storytelling for mobile */
  .work-featured {
    margin-bottom: 48px;
  }

  .work-story {
    flex-direction: column;
    gap: 8px;
  }

  .work-story-number {
    font-size: 2.5rem;
  }

  .work-story-title {
    font-size: 1.4rem;
  }

  .work-story-challenge {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .work-story-section {
    margin-bottom: 16px;
  }

  .work-story-text {
    font-size: 0.9rem;
  }

  /* V4.2: Process — vertical with path on left, no alternating, large numerals */
  .process-journey {
    left: 32px;
    top: 180px;
    bottom: 80px;
  }

  .process-step {
    flex-direction: row;
    gap: 20px;
    padding: 24px 0;
  }

  .process-step:nth-child(even) {
    flex-direction: row;
    text-align: left;
  }

  .process-step:nth-child(even) .process-step-numeral {
    text-align: right;
  }

  .process-step-marker {
    left: 32px;
    top: 40px;
    width: 12px;
    height: 12px;
  }

  .process-step-numeral {
    font-size: 3.5rem;
    width: 70px;
    text-align: right;
  }

  .process-step-body {
    padding-top: 4px;
    max-width: 100%;
  }

  .process-step-title {
    font-size: 1.3rem;
  }

  /* V4.2: Pricing — simplified to 2-col (label + featured only on mobile) */
  .pricing-comparison-header,
  .pricing-comparison-row,
  .pricing-comparison-cta {
    grid-template-columns: 1fr 1fr;
  }

  /* Hide Starter and Professional columns on mobile — show Growth (featured) + label */
  .pricing-col-name:nth-child(2),
  .pricing-col-name:nth-child(4),
  .pricing-col-value:nth-child(2),
  .pricing-col-value:nth-child(4),
  .pricing-col-feature:nth-child(2),
  .pricing-col-feature:nth-child(4),
  .pricing-col-cta:nth-child(2),
  .pricing-col-cta:nth-child(4) {
    display: none;
  }

  .pricing-col-label {
    font-size: 13px;
    padding: 14px 12px;
  }

  .pricing-col-feature {
    padding: 12px 8px;
    font-size: 14px;
  }

  .pricing-col-value {
    font-size: 1.1rem;
    padding: 16px 12px;
  }

  .pricing-col-cta .btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .pricing-care-block {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .pricing-care-content {
    text-align: left;
  }

  /* V4.2: Covenant — tight, intentional on mobile */
  .covenant-promises {
    gap: 0;
  }

  .covenant-promise {
    padding: 28px 0;
  }

  .covenant-promise-text {
    font-size: clamp(1.4rem, 5vw, 1.75rem);
  }

  .covenant-promise-detail {
    font-size: 0.95rem;
  }

  .covenant-header {
    margin-bottom: 40px;
  }

  .covenant-footer {
    margin-top: 32px;
  }

  /* V4.2: Contact — tightened for mobile */
  .contact-wrapper {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .contact-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .contact-methods {
    gap: 12px;
  }

  .contact-method {
    padding: 14px 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small mobile (375px) */
@media (max-width: 420px) {
  .container {
    padding: 0 16px;
  }

  .hero-eyebrow {
    font-size: 11px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .pricing-comparison-header,
  .pricing-comparison-row,
  .pricing-comparison-cta {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-col-label {
    font-size: 12px;
  }

  .contact-method-icon {
    width: 40px;
    height: 40px;
  }

  .contact-method-value {
    font-size: 0.9rem;
  }

  .industry-card {
    padding: 16px 12px;
  }

  .industry-card-numeral {
    font-size: 1.1rem;
  }

  .why-item {
    padding: 24px 0;
  }

  .why-item-numeral {
    font-size: 2rem;
  }

  .process-step-numeral {
    font-size: 2.5rem;
    width: 50px;
  }

  .process-journey {
    left: 24px;
  }

  .process-step-marker {
    left: 24px;
  }

  .covenant-promise {
    padding: 24px 0;
  }
}
