/* ============================================
   SLASH — Premium Marketing Agency
   Design System: Zapier-inspired
   ============================================ */

/* --- Font Declarations --- */

@font-face {
  font-family: 'Degular Display';
  src: local('Degular Display'), local('DegularDisplay');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Alpina';
  src: local('GT Alpina'), local('GTAlpina');
  font-weight: 100 400;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --cream: #fffefb;
  --off-white: #fffdf9;
  --near-black: #201515;
  --charcoal: #36342e;
  --warm-gray: #939084;
  --sand: #c5c0b1;
  --light-sand: #eceae3;
  --orange: #ff4f00;

  --font-display: 'Degular Display', 'Arial Black', 'Arial', sans-serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
  --font-editorial: 'GT Alpina', Georgia, 'Times New Roman', serif;

  --max-width: 1200px;
  --section-pad: 80px;
  --section-pad-mobile: 48px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 4px;
  border-color: var(--orange);
}

.btn-primary:hover {
  background-color: #e64500;
  border-color: #e64500;
}

.btn-dark {
  background-color: var(--near-black);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 8px;
  border-color: var(--near-black);
}

.btn-dark:hover {
  background-color: var(--sand);
  border-color: var(--sand);
  color: var(--near-black);
}

.btn-light {
  background-color: var(--light-sand);
  color: var(--charcoal);
  padding: 20px 24px;
  border-radius: 8px;
  border-color: var(--sand);
}

.btn-light:hover {
  background-color: var(--sand);
  color: var(--near-black);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding: 0 40px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.nav-logo {
  color: var(--near-black);
  flex-shrink: 0;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--near-black);
  padding: 12px 16px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.nav-links a:hover {
  background-color: var(--light-sand);
}

.nav-cta {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 4px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-height: 44px;
  min-width: 44px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--near-black);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-mobile {
  display: none;
  background-color: var(--cream);
  border-top: 1px solid var(--sand);
  padding: 16px 40px 24px;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--near-black);
  padding: 12px 0;
  border-bottom: 1px solid var(--light-sand);
}

.nav-mobile .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  border-bottom: none;
  color: var(--cream);
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 96px 40px 80px;
  text-align: center;
  background-color: var(--cream);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-microlabel {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 32px;
}

/* Breadcrumb */
.breadcrumb {
  margin: 0 0 16px 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb-item a:hover {
  color: var(--orange);
}

.breadcrumb-separator {
  margin: 0 10px;
  color: var(--sand);
  font-size: 14px;
}

.breadcrumb-current {
  color: var(--charcoal);
}

.hero-headline {
  font-family: var(--font-editorial);
  font-size: 60px;
  font-weight: 250;
  line-height: 1.15;
  letter-spacing: -1.92px;
  color: var(--near-black);
  max-width: 800px;
  margin-bottom: 32px;
}

.text-highlight {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-gray);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  border-top: 1px solid var(--sand);
  padding: 56px 40px;
  background-color: var(--off-white);
}

.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--near-black);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
}

/* ============================================
   INQUIRY FORM
   ============================================ */
.inquiry-section {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
  background-color: var(--cream);
}

.inquiry-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.inquiry-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.inquiry-text {
  padding-top: 8px;
}

.inquiry-heading {
  font-family: var(--font-editorial);
  font-size: 44px;
  font-weight: 250;
  letter-spacing: -1.6px;
  color: var(--near-black);
  line-height: 1.15;
  margin-bottom: 24px;
}

.inquiry-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 32px;
}

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

.inquiry-checklist li {
  font-size: 16px;
  font-weight: 500;
  color: var(--near-black);
  padding-left: 28px;
  position: relative;
}

.inquiry-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath fill='%23fffefb' d='M3.5 6.3L1.2 4l-.7.7L3.5 7.7l6.5-6.5-.7-.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.inquiry-form {
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inquiry-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.inquiry-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: 0.2px;
}

.inquiry-form-group input,
.inquiry-form-group select {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--near-black);
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 5px;
  padding: 14px 16px;
  transition: border-color 0.2s ease;
  width: 100%;
}

.inquiry-form-group input::placeholder {
  color: var(--warm-gray);
}

.inquiry-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23939084' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.inquiry-form-group input:focus,
.inquiry-form-group select:focus {
  outline: none;
  border-color: var(--orange);
}

.inquiry-submit {
  margin-top: 8px;
  align-self: flex-start;
}

.inquiry-form-group-full {
  width: 100%;
}

.inquiry-form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--near-black);
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 5px;
  padding: 14px 16px;
  transition: border-color 0.2s ease;
  width: 100%;
  resize: vertical;
  min-height: 90px;
}

.inquiry-form-group textarea::placeholder {
  color: var(--warm-gray);
}

.inquiry-form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad) 40px;
  background-color: var(--cream);
  border-top: 1px solid var(--sand);
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-header {
  margin-bottom: 56px;
}

.services-heading {
  font-family: var(--font-editorial);
  font-size: 48px;
  font-weight: 250;
  letter-spacing: -1.92px;
  color: var(--near-black);
  line-height: 1.15;
  max-width: 640px;
}

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

.service-card {
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 5px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.service-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.service-card-title,
.service-card-body,
.service-card-link {
  margin-left: 32px;
  margin-right: 32px;
}

.service-card-title {
  margin-top: 32px;
}

.service-card-link {
  margin-bottom: 32px;
}

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

.service-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--light-sand);
  border: 1px solid var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

.service-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: -0.48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-card-body {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 32px;
}

.service-card-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.service-card-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.services-exclusion {
  margin-top: 56px;
  padding: 40px;
  border: 1px solid var(--sand);
  border-radius: 5px;
  background-color: var(--off-white);
}

.services-exclusion-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 760px;
  margin-top: 12px;
}

/* Industry page — service card modifiers */
.services-grid--wide {
  grid-template-columns: repeat(2, 1fr);
}

.service-card--callout {
  background-color: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-callout-stat {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}

.service-card-callout-label {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Why-not card (used in approach sections) */
.why-not-card {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid var(--sand);
  border-radius: 5px;
  background-color: var(--off-white);
}

.why-not-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 12px;
}

.why-not-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 760px;
}

/* ============================================
   WHY TERRIFIC
   ============================================ */
.why-slash {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
  background-color: var(--off-white);
}

.why-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-header {
  margin-bottom: 56px;
}

.why-heading {
  font-family: var(--font-editorial);
  font-size: 48px;
  font-weight: 250;
  letter-spacing: -1.92px;
  color: var(--near-black);
  line-height: 1.15;
  max-width: 640px;
}

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

.why-card {
  padding: 40px 32px;
  border: 1px solid var(--sand);
  border-radius: 5px;
  background-color: var(--cream);
  transition: border-color 0.2s ease;
}

.why-card:hover {
  border-color: var(--charcoal);
}

.why-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: -0.48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-card-body {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

.why-not-box {
  margin-top: 48px;
  padding: 32px 40px;
  border: 1px solid var(--sand);
  border-radius: 8px;
  background-color: var(--off-white);
}

.why-not-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 10px;
}

.why-not-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 680px;
  margin: 0;
}

/* ============================================
   HERITAGE (Terrific Digital)
   ============================================ */
.heritage {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
  background-color: var(--off-white);
}

.heritage-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.heritage-text {
  padding-top: 8px;
}

.heritage-heading {
  font-family: var(--font-editorial);
  font-size: 48px;
  font-weight: 250;
  letter-spacing: -1.92px;
  color: var(--near-black);
  line-height: 1.15;
  margin-bottom: 32px;
  max-width: 520px;
}

.heritage-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 20px;
}

.heritage-body:last-child {
  margin-bottom: 0;
}

.heritage-link {
  color: var(--near-black);
  font-weight: 600;
  border-bottom: 1px solid var(--near-black);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.heritage-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.heritage-card {
  border: 1px solid var(--sand);
  border-radius: 5px;
  background-color: var(--cream);
  padding: 40px 36px;
  position: sticky;
  top: 100px;
}

.heritage-card-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 12px;
}

.heritage-card-brand {
  display: block;
  font-family: var(--font-editorial);
  font-size: 32px;
  font-weight: 250;
  letter-spacing: -0.96px;
  color: var(--near-black);
  line-height: 1.1;
  margin-bottom: 20px;
  border-bottom: none;
  transition: color 0.2s ease;
}

.heritage-card-brand:hover {
  color: var(--orange);
}

.heritage-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

.heritage-divider {
  height: 1px;
  background-color: var(--sand);
  margin: 28px 0;
}

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

.heritage-pillars li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--near-black);
  padding-left: 24px;
  position: relative;
}

.heritage-pillars li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--orange);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
  background-color: var(--off-white);
}

.process-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-header {
  margin-bottom: 64px;
}

.process-heading {
  font-family: var(--font-editorial);
  font-size: 48px;
  font-weight: 250;
  letter-spacing: -1.92px;
  color: var(--near-black);
  line-height: 1.15;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand) 8%, var(--sand) 92%, transparent);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.step-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--near-black);
  line-height: 0.9;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 5px;
  margin: 0 auto 24px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ============================================
   RESULTS / CASE STUDIES
   ============================================ */
.results {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
  background-color: var(--cream);
}

.results-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.results-header {
  margin-bottom: 56px;
}

.results-heading {
  font-family: var(--font-editorial);
  font-size: 48px;
  font-weight: 250;
  color: var(--near-black);
  letter-spacing: -1.92px;
  line-height: 1.15;
  max-width: 640px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

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

.case-card {
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 48px 40px;
  transition: border-color 0.2s ease;
}

.case-card:hover {
  border-color: var(--charcoal);
}

.case-category {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.case-desc {
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 32px;
}

.case-stat {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--orange);
  line-height: 0.9;
  margin-bottom: 8px;
}

.case-stat-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--warm-gray);
}

.results-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--near-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.results-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ============================================
   PROOF RESULTS (Screenshot Showcase)
   ============================================ */
.proof-results {
  padding: var(--section-pad) 40px;
  background-color: var(--off-white);
  border-top: 1px solid var(--sand);
}

.proof-results-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.proof-results-header {
  /* left column — no max-width needed; grid controls width */
}

.proof-results-heading {
  font-family: var(--font-editorial);
  font-size: 48px;
  font-weight: 250;
  color: var(--near-black);
  letter-spacing: -1.92px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.proof-results-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

.proof-results-screenshots {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proof-results-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-results-img {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--sand);
  border-radius: 8px;
  display: block;
}

.proof-results-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.proof-results-callout {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.55;
  border-top: 1px solid var(--sand);
  padding-top: 24px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .proof-results {
    padding: var(--section-pad-mobile) 24px;
  }

  .proof-results-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-results-heading {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  .proof-results-subtitle {
    font-size: 16px;
  }

  .proof-results-callout {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .proof-results-heading {
    font-size: 28px;
  }

  .proof-results-subtitle {
    font-size: 15px;
  }
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
  background-color: var(--off-white);
}

.testimonial-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-mark {
  font-family: var(--font-editorial);
  font-size: 80px;
  font-weight: 250;
  color: var(--sand);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}

.testimonial-quote {
  font-family: var(--font-editorial);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -1.6px;
  color: var(--near-black);
  margin-bottom: 40px;
}

.testimonial-attribution {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
}

/* ── HOMEPAGE TEAM ── */
.team {
  padding: var(--section-pad) 40px;
  background-color: var(--cream);
  border-top: 1px solid var(--sand);
}

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

.team-header {
  text-align: center;
  margin-bottom: 56px;
}

.team-heading {
  font-family: var(--font-editorial);
  font-weight: 250;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.team-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--warm-gray);
  max-width: 560px;
  margin: 0 auto;
}

.team-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.team-track-wrapper {
  overflow-x: hidden;
  overflow-y: visible;
  flex: 1;
  min-width: 0;
  padding-top: 8px;
  margin-top: -8px;
}

.team-track {
  display: flex;
  transition: transform 0.4s ease;
}

.team-card {
  flex: 0 0 25%;
  min-width: 0;
  padding-right: 24px;
  box-sizing: border-box;
}

.team-card-inner {
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  border-top: 4px solid var(--sand);
  height: 100%;
}

.team-card-inner:hover {
  border-color: var(--charcoal);
  transform: translateY(-4px);
}

.team-card-inner[data-accent="emerald"] { border-top-color: #3d9970; }
.team-card-inner[data-accent="coral"]   { border-top-color: #e8613c; }
.team-card-inner[data-accent="blue"]    { border-top-color: #4a6fa5; }
.team-card-inner[data-accent="amber"]   { border-top-color: #d4943a; }
.team-card-inner[data-accent="teal"]    { border-top-color: #2a9d8f; }
.team-card-inner[data-accent="plum"]    { border-top-color: #8e5b8a; }
.team-card-inner[data-accent="rose"]    { border-top-color: #c06070; }

.team-card-photo-wrap {
  position: relative;
  margin-bottom: -20px;
  z-index: 1;
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-card-linkedin {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

[data-accent="emerald"] .team-card-linkedin:hover { background-color: #3d9970; border-color: #3d9970; color: var(--cream); }
[data-accent="coral"]   .team-card-linkedin:hover { background-color: #e8613c; border-color: #e8613c; color: var(--cream); }
[data-accent="blue"]    .team-card-linkedin:hover { background-color: #4a6fa5; border-color: #4a6fa5; color: var(--cream); }
[data-accent="amber"]   .team-card-linkedin:hover { background-color: #d4943a; border-color: #d4943a; color: var(--cream); }
[data-accent="teal"]    .team-card-linkedin:hover { background-color: #2a9d8f; border-color: #2a9d8f; color: var(--cream); }
[data-accent="plum"]    .team-card-linkedin:hover { background-color: #8e5b8a; border-color: #8e5b8a; color: var(--cream); }
[data-accent="rose"]    .team-card-linkedin:hover { background-color: #c06070; border-color: #c06070; color: var(--cream); }

.team-card-info {
  position: relative;
  background-color: var(--cream);
  padding: 32px 24px 28px;
  border-top: 1px solid var(--light-sand);
}

.team-card-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

[data-accent="emerald"]:hover .team-card-name { color: #3d9970; }
[data-accent="coral"]:hover .team-card-name   { color: #e8613c; }
[data-accent="blue"]:hover .team-card-name    { color: #4a6fa5; }
[data-accent="amber"]:hover .team-card-name   { color: #d4943a; }
[data-accent="teal"]:hover .team-card-name    { color: #2a9d8f; }
[data-accent="plum"]:hover .team-card-name    { color: #8e5b8a; }
[data-accent="rose"]:hover .team-card-name    { color: #c06070; }

.team-card-role {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-card-role::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--sand);
}

[data-accent="emerald"] .team-card-role::before { background-color: #3d9970; }
[data-accent="coral"] .team-card-role::before   { background-color: #e8613c; }
[data-accent="blue"] .team-card-role::before    { background-color: #4a6fa5; }
[data-accent="amber"] .team-card-role::before   { background-color: #d4943a; }
[data-accent="teal"] .team-card-role::before    { background-color: #2a9d8f; }
[data-accent="plum"] .team-card-role::before    { background-color: #8e5b8a; }
[data-accent="rose"] .team-card-role::before    { background-color: #c06070; }

.team-card-bio {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal);
}

.team-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  background: var(--cream);
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.team-arrow:hover {
  border-color: var(--charcoal);
}

.team-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

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

/* Platform Results Screenshot */
.platform-results {
  padding: var(--section-pad) 40px;
  background: var(--off-white);
  border-top: 1px solid var(--sand);
}

.platform-results-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.platform-results-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-results-heading {
  font-family: var(--font-editorial);
  font-size: 40px;
  font-weight: 250;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--charcoal);
  margin: 0;
}

.platform-results-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin: 0;
}

.platform-results-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sand);
}

.platform-results-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background-color: var(--near-black);
  padding: var(--section-pad) 40px;
}

.final-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-heading {
  font-family: var(--font-editorial);
  font-size: 56px;
  font-weight: 250;
  letter-spacing: -1.92px;
  color: var(--cream);
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 24px;
}

.final-cta-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #c5c0b1;
  line-height: 1.4;
  max-width: 540px;
  margin-bottom: 40px;
}

.final-cta-note {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-gray);
}

/* --- Contact Form --- */
.contact-form {
  max-width: 640px;
  width: 100%;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group-full {
  width: 100%;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 0.2px;
}

.form-optional {
  font-weight: 400;
  color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 192, 177, 0.3);
  border-radius: 5px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23939084' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background-color: var(--near-black);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background-color: rgba(255, 255, 255, 0.12);
}

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

.form-submit {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--near-black);
  border-top: 1px solid #2e2424;
  padding: 64px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2e2424;
  align-items: start;
}

.footer-brand {
  padding-right: 40px;
}

.footer-logo {
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-logo-img {
  max-height: 160px;
  height: auto;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 220px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #c5c0b1;
  transition: color 0.2s ease;
  display: block;
  padding: 6px 0;
}

.footer-col ul li a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid #2e2424;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5c0b1;
  font-size: 14px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  border-color: var(--sand);
  color: var(--cream);
}

/* ============================================
   ABOUT PAGE — NAV ACTIVE STATE
   ============================================ */
.nav-link-active {
  background-color: var(--light-sand);
  border-radius: 5px;
}

/* ============================================
   ABOUT — PAGE HERO
   ============================================ */
.about-hero {
  padding: 96px 40px 80px;
  text-align: center;
}

.about-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero-heading {
  font-family: var(--font-editorial);
  font-size: 60px;
  font-weight: 250;
  line-height: 1.15;
  letter-spacing: -1.92px;
  color: var(--near-black);
  max-width: 820px;
  margin-bottom: 32px;
}

.about-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
  max-width: 580px;
}

/* ============================================
   ABOUT — OUR STORY
   ============================================ */
.about-story {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
}

.about-story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-story-header {
  margin-bottom: 56px;
}

.about-section-heading {
  font-family: var(--font-editorial);
  font-size: 48px;
  font-weight: 250;
  letter-spacing: -1.92px;
  color: var(--near-black);
  line-height: 1.15;
  max-width: 640px;
}

.about-story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.about-story-col p {
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.7;
}

/* ============================================
   ABOUT — WHAT MAKES US DIFFERENT
   ============================================ */
.about-different {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
}

.about-different-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-different-header {
  margin-bottom: 56px;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================
   ABOUT — THE TEAM
   ============================================ */
.about-team {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
}

.about-team-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-team-header {
  margin-bottom: 56px;
}

.about-team-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  max-width: 560px;
  margin-top: 20px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-team-card {
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 5px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.about-team-card:hover {
  border-color: var(--charcoal);
}

.about-team-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.about-team-card-link:hover .about-team-name {
  color: var(--orange);
}

.about-team-card-link:hover {
  border-color: var(--charcoal);
}

.about-team-photo {
  width: 100%;
  height: 320px;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: top center;
  border-radius: 5px;
  border: 1px solid var(--sand);
  margin-bottom: 20px;
  display: block;
}

.about-team-info {
  padding: 24px 24px 32px;
}

.about-team-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 6px;
}

.about-team-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--warm-gray);
}

.about-team-name-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.about-team-name-link:hover {
  color: var(--orange);
}

.about-team-bio-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.about-team-bio-link:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* ============================================
   SCREEN READER ONLY UTILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   PAGE HERO (case-studies, contact, etc.)
   ============================================ */
.page-hero {
  padding: 96px 40px 80px;
  text-align: center;
  background-color: var(--cream);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-headline {
  font-family: var(--font-editorial);
  font-size: 60px;
  font-weight: 250;
  line-height: 1.15;
  letter-spacing: -1.92px;
  color: var(--near-black);
  max-width: 760px;
  margin-bottom: 28px;
}

.page-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
  max-width: 560px;
}

/* ============================================
   CASE STUDIES PAGE
   ============================================ */
.case-studies-section {
  padding: var(--section-pad) 40px;
}

.case-studies-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card-expanded {
  display: flex;
  flex-direction: column;
}

.case-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: -0.48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.case-card-expanded .case-desc {
  flex: 1;
  font-size: 16px;
  margin-bottom: 32px;
}

.case-card-expanded .case-stat {
  font-size: 52px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
}

.contact-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Contact page form — cream background variant */
.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.contact-form-group-full {
  width: 100%;
}

.contact-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: 0.2px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--near-black);
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 5px;
  padding: 14px 16px;
  transition: border-color 0.2s ease;
  width: 100%;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: var(--warm-gray);
}

.contact-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23939084' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
  background-color: var(--cream);
}

.contact-form-group select option {
  background-color: var(--cream);
  color: var(--near-black);
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-submit {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-form-note {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-gray);
}

/* Contact Details sidebar */
.contact-details {
  padding-top: 8px;
}

.contact-details-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: -0.32px;
  margin-bottom: 32px;
}

.contact-detail-item {
  margin-bottom: 24px;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 6px;
}

.contact-detail-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--near-black);
  transition: color 0.2s ease;
}

.contact-detail-value:hover {
  color: var(--orange);
}

.contact-expect {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}

.contact-expect-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.contact-expect-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-expect-list li {
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.contact-expect-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sand);
  font-size: 13px;
}

/* ============================================
   INDUSTRY NICHE PAGE SECTIONS
   ============================================ */

/* Hero buttons row (primary CTA + secondary link) */
.page-hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.page-hero-buttons .btn-secondary-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.page-hero-buttons .btn-secondary-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Trust micro-line beneath hero */
.page-hero-trust {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-gray);
  margin-top: 24px;
  letter-spacing: 0.01em;
}

/* Services / What You Get grid */
.niche-services {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
}

.niche-services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.niche-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.niche-service-card {
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 32px;
  background: var(--off-white);
}

.niche-service-card-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.niche-service-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* Problem section */
.niche-problem {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
}

.niche-problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.niche-callout {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 32px 0;
  max-width: 720px;
}

/* Approach "What you won't get" row */
.niche-approach-not {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  color: var(--warm-gray);
  font-size: 15px;
  font-family: var(--font-body);
  justify-content: center;
}

.niche-approach-not span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.niche-approach-not span::before {
  content: "✕";
  color: var(--orange);
  font-weight: 600;
}

/* FAQ section */
.niche-faq {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--sand);
}

.niche-faq-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.faq-list {
  max-width: 720px;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--sand);
}

.faq-question {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-gray);
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-top: 12px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Heritage card quote variant (industry pages) */
.heritage-card-stat-quote {
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 250;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 0;
}

/* Services section footer note (industry pages) */
.services-footer-note {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--sand);
  max-width: 720px;
}

.services-footer-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-top: 8px;
}

/* Generic niche section wrapper */
.niche-section {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
}

.niche-section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  margin-bottom: 12px;
}

.niche-section-heading {
  font-family: var(--font-editorial);
  font-size: 40px;
  font-weight: 250;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.niche-body-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 720px;
}

.niche-problem .niche-section-heading {
  max-width: 720px;
}

/* ── Category page niche grid ── */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.niche-grid-card {
  display: block;
  padding: 32px;
  border: 1px solid var(--sand);
  border-radius: 8px;
  background: var(--off-white);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.niche-grid-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.niche-grid-card h3 {
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 250;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.niche-grid-card p {
  font-size: 16px;
  color: var(--warm-gray);
  margin: 0;
}

.niche-grid-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--warm-gray);
  font-family: var(--font-body);
  transition: color 0.2s;
}

.niche-grid-card:hover .niche-grid-cta {
  color: var(--orange);
}

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

/* FAQ section wrapper (industry landing pages) */
.faq-section {
  background: var(--off-white);
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
}

.faq-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.faq-heading {
  font-family: var(--font-editorial);
  font-size: 48px;
  font-weight: 250;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-top: 12px;
}

/* Native <details> FAQ styling */
.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Why-callout block inside .why-slash */
.why-callout {
  margin-top: 48px;
  padding: 32px 40px;
  border: 1px solid var(--sand);
  border-radius: 8px;
  background: var(--light-sand);
  max-width: 720px;
}

.why-callout-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  margin-bottom: 12px;
}

.why-callout-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}

/* Alternate why-slash background */
.why-slash--alt {
  background: var(--off-white);
}

/* ============================================
   TEAM BIO PAGES
   ============================================ */
.bio-section {
  padding: var(--section-pad) 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.bio-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.bio-photo {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--sand);
  display: block;
}

.bio-body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.bio-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.bio-linkedin:hover {
  text-decoration: underline;
}

/* Heritage card approach utility */
.heritage-card--approach {
  margin-top: 48px;
  max-width: 640px;
}

/* Why-grid FAQ single column */
.why-grid--faq {
  grid-template-columns: 1fr;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .niche-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .container {
    padding: 0 32px;
  }

  .hero-headline {
    font-size: 56px;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

  .inquiry-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .heritage-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .heritage-card {
    position: static;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .process-steps::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-logo-img {
    max-height: 130px;
  }

  /* About page — 1024px */
  .about-hero-heading {
    font-size: 52px;
  }

  .about-section-heading {
    font-size: 40px;
    line-height: 1.15;
  }

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

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

  /* Case studies page — 1024px */
  .case-studies-section {
    padding: var(--section-pad) 32px;
  }

  /* Contact page — 1024px */
  .contact-section {
    padding: var(--section-pad) 32px;
  }

  .contact-section-inner {
    gap: 56px;
  }

  .page-hero-headline {
    font-size: 52px;
  }

  .testimonial-quote {
    font-size: 32px;
    letter-spacing: -1.2px;
  }

  .final-cta-heading {
    font-size: 48px;
  }

  .case-card {
    padding: 40px 32px;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  padding: var(--section-pad) 40px;
  border-top: 1px solid var(--sand);
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: -0.48px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-inner h3:first-child {
  margin-top: 0;
}

.legal-inner p {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-inner ul li {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-inner a {
  color: var(--orange);
  text-decoration: underline;
}

.legal-inner a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .niche-services-grid {
    grid-template-columns: 1fr;
  }

  /* Niche shared sections — reduce side padding to 24px on mobile */
  .niche-services,
  .niche-problem,
  .niche-faq,
  .niche-section {
    padding: var(--section-pad-mobile) 24px;
  }

  .page-hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .page-hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .niche-section-heading {
    font-size: 32px;
    line-height: 1.2;
  }

  .niche-approach-not {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .niche-callout {
    font-size: 18px;
  }

  .faq-heading {
    font-size: 32px;
    line-height: 1.2;
  }

  /* Why-not box — reduce padding on mobile */
  .why-not-box {
    padding: 24px;
  }

  /* Why-callout box — reduce padding on mobile */
  .why-callout {
    padding: 24px;
  }

  /* Services exclusion box — reduce padding on mobile */
  .services-exclusion {
    padding: 28px 24px;
  }

  :root {
    --section-pad: var(--section-pad-mobile);
  }

  .legal-content {
    padding: var(--section-pad-mobile) 24px;
  }

  .nav {
    padding: 0 24px;
  }

  .nav-logo-img {
    height: 52px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    padding: 16px 24px 24px;
  }

  .hero {
    padding: 64px 24px 56px;
  }

  .hero-headline {
    font-size: 44px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .stats-bar {
    padding: 40px 24px;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .inquiry-section {
    padding: var(--section-pad-mobile) 24px;
  }

  .inquiry-heading {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  .inquiry-form {
    padding: 28px;
  }

  .inquiry-form-row {
    grid-template-columns: 1fr;
  }

  .inquiry-submit {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }

  .services {
    padding: var(--section-pad-mobile) 24px;
  }

  .services-heading {
    font-size: 36px;
    line-height: 1.2;
  }

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

  .heritage {
    padding: var(--section-pad-mobile) 24px;
  }

  .heritage-heading {
    font-size: 36px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  .heritage-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .heritage-card {
    position: static;
  }

  .why-slash {
    padding: var(--section-pad-mobile) 24px;
  }

  .why-heading {
    font-size: 36px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

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

  .process {
    padding: var(--section-pad-mobile) 24px;
  }

  .process-heading {
    font-size: 36px;
    line-height: 1.2;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-step {
    text-align: left;
    display: flex;
    gap: 20px;
    padding: 0;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

  .results {
    padding: var(--section-pad-mobile) 24px;
  }

  .results-heading {
    font-size: 36px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

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

  .case-card {
    padding: 36px 28px;
  }

  .case-stat {
    font-size: 40px;
  }

  .testimonial {
    padding: var(--section-pad-mobile) 24px;
  }

  .testimonial-quote {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .platform-results { padding: var(--section-pad-mobile) 24px; }
  .platform-results-inner { grid-template-columns: 1fr; gap: 32px; }
  .platform-results-heading { font-size: 32px; line-height: 1.2; }

  .final-cta {
    padding: var(--section-pad-mobile) 24px;
  }

  .final-cta-heading {
    font-size: 40px;
    line-height: 1.2;
  }

  .final-cta-subtitle {
    font-size: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }

  .footer {
    padding: 48px 24px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo-img {
    max-height: 110px;
  }

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

  /* About page — 768px */
  .about-hero {
    padding: 64px 24px 56px;
  }

  .about-hero-heading {
    font-size: 40px;
    line-height: 1.2;
  }

  .about-hero-subtitle {
    font-size: 18px;
  }

  .about-story {
    padding: var(--section-pad-mobile) 24px;
  }

  .about-story-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-section-heading {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  .about-different {
    padding: var(--section-pad-mobile) 24px;
  }

  .about-cards-grid {
    grid-template-columns: 1fr;
  }

  .about-team {
    padding: var(--section-pad-mobile) 24px;
  }

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

  /* Page hero — 768px */
  .page-hero {
    padding: 64px 24px 56px;
  }

  .page-hero-headline {
    font-size: 44px;
    line-height: 1.2;
  }

  .page-hero-subtitle {
    font-size: 18px;
  }

  /* Case studies page — 768px */
  .case-studies-section {
    padding: var(--section-pad-mobile) 24px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .case-card-expanded .case-stat {
    font-size: 40px;
  }

  /* Contact page — 768px */
  .contact-section {
    padding: var(--section-pad-mobile) 24px;
  }

  .contact-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-page-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-details {
    border-top: 1px solid var(--sand);
    padding-top: 48px;
  }

  /* Contact submit button — full-width for better tap target on mobile */
  .contact-form-submit {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }

  /* Final CTA button — full-width on mobile for larger tap target */
  .final-cta .btn {
    width: 100%;
    max-width: 400px;
  }

  /* Page hero subtitle — slightly smaller on mobile */
  .page-hero-subtitle {
    font-size: 17px;
  }

  .heritage-card {
    padding: 28px 24px;
  }

  .why-card {
    padding: 28px 24px;
  }

  .heritage-heading {
    max-width: 100%;
  }

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

  .nav-mobile.open {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-hero-buttons .btn-secondary-link {
    width: 100%;
    text-align: center;
    display: block;
    padding: 16px 24px;
  }

  .service-card-callout-stat {
    font-size: 48px;
  }

  .faq-list {
    max-width: 100%;
  }

  .bio-section {
    padding: var(--section-pad-mobile) 24px;
  }

  .bio-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bio-photo {
    width: 100%;
    height: auto;
    max-height: 360px;
  }

  .heritage-card--approach {
    margin-top: 32px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 36px;
    line-height: 1.2;
  }

  .platform-results { padding: var(--section-pad-mobile) 20px; }
  .platform-results-heading { font-size: 28px; }
  .platform-results-desc { font-size: 15px; }

  .final-cta-heading {
    font-size: 32px;
    line-height: 1.2;
  }

  .final-cta-subtitle {
    font-size: 16px;
  }

  .inquiry-heading {
    font-size: 28px;
    line-height: 1.2;
  }

  .stats-bar-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-logo-img {
    max-height: 90px;
  }

  /* About page — 480px */
  .about-hero-heading {
    font-size: 32px;
    line-height: 1.2;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  /* Page hero — 480px */
  .page-hero-headline {
    font-size: 36px;
    line-height: 1.2;
  }

  /* Contact page form — 480px */
  .contact-form-submit {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }

  /* Page hero subtitle — smallest screens */
  .page-hero-subtitle {
    font-size: 16px;
  }

  /* Final CTA button — no max-width constraint at narrowest viewport */
  .final-cta .btn {
    max-width: none;
  }

  .testimonial-quote {
    font-size: 22px;
    letter-spacing: -0.5px;
  }

  .inquiry-form {
    padding: 20px 16px;
  }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .final-cta-heading {
    letter-spacing: -0.5px;
  }

  .niche-callout {
    padding: 20px 20px;
    font-size: 17px;
  }

  .legal-inner h3 {
    font-size: 20px;
    margin-top: 32px;
  }

  .bio-body {
    font-size: 16px;
  }

  .bio-section {
    padding: var(--section-pad-mobile) 20px;
  }
}

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

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--near-black);
  padding: 12px 16px;
  border-radius: 5px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nav-dropdown-toggle:hover {
  background-color: var(--light-sand);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 32px;
  gap: 32px;
  z-index: 200;
  min-width: 800px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown-heading {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--warm-gray);
  margin-bottom: 8px;
  padding: 0 8px;
  text-decoration: none;
}

.nav-dropdown-heading:hover {
  color: var(--charcoal);
  background-color: var(--light-sand);
  border-radius: 4px;
}

.nav-dropdown-col a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 6px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.nav-dropdown-col a:hover {
  background-color: var(--light-sand);
}

/* Mobile Industries accordion */
.nav-mobile-industries {
  padding: 0;
  border-bottom: 1px solid var(--light-sand);
}

.nav-mobile-industries-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--near-black);
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile-industries-toggle svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-mobile-industries-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-mobile-industries-content {
  display: none;
  padding-left: 16px;
  padding-bottom: 8px;
}

.nav-mobile-industries-content.open {
  display: block;
}

.nav-mobile-cat-heading {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--warm-gray);
  margin: 16px 0 4px;
  text-decoration: none;
  border-bottom: none;
  padding: 4px 0 0;
}

.nav-mobile-cat-heading:hover {
  color: var(--charcoal);
}

.nav-mobile-industries-content a {
  display: flex;
  align-items: center;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-sand);
  min-height: 44px;
}

.nav-mobile-industries-content .nav-mobile-cat-heading {
  min-height: unset;
  display: block;
  border-bottom: none;
}

@media (max-width: 1024px) {
  .nav-dropdown-menu {
    min-width: min(600px, calc(100vw - 48px));
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-dropdown {
    display: none;
  }
}

/* Services dropdown — single-column override */
.nav-dropdown--services .nav-dropdown-menu {
  min-width: 200px;
}
.nav-dropdown--services.open .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
}
.nav-dropdown--services .nav-dropdown-menu a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.nav-dropdown--services .nav-dropdown-menu a:hover {
  background-color: var(--light-sand);
}

/* Mobile Services accordion */
.nav-mobile-services {
  padding: 0;
  border-bottom: 1px solid var(--light-sand);
}

.nav-mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
}

.nav-mobile-services-toggle svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-mobile-services-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-mobile-services-content {
  display: none;
  padding-left: 0;
  padding-bottom: 8px;
}

.nav-mobile-services-content.open {
  display: block;
}

.nav-mobile-services-content a {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--charcoal);
  text-decoration: none;
  padding: 10px 24px 10px 8px;
  border-bottom: 1px solid var(--light-sand);
  min-height: 44px;
}

/* ============================================
   SERVICES NOT-INCLUDED BLOCK
   ============================================ */
.services-not-included {
  margin-top: 56px;
  padding: 40px 48px;
  background: var(--off-white);
  border: 1px solid var(--sand);
  border-radius: 8px;
}

.services-not-included .section-label {
  margin-bottom: 20px;
}

.not-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

.not-included-list li {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.not-included-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--sand);
  font-size: 12px;
  top: 2px;
}

@media (max-width: 768px) {
  .services-not-included {
    padding: 28px 24px;
  }

  .not-included-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CATEGORY PAGE — INDUSTRY-CONTENT RESPONSIVE
   ============================================ */

/*
 * All 6 category pages wrap their body in .industry-content. We declare all
 * four sides of padding here so breakpoint overrides can reach them
 * (inline shorthand cannot be split by media queries).
 */
.industry-content {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  padding-left: 40px;
  padding-right: 40px;
}

/*
 * Each content block inside .industry-content uses .industry-section-block.
 * Space them apart vertically; the last child gets no extra bottom margin so
 * the section's padding-bottom provides the only gap before the next section.
 */
.industry-section-block {
  margin-bottom: 64px;
}

.industry-section-block:last-child {
  margin-bottom: 0;
}

/* GT Alpina H2s inside industry-content: set size, letter-spacing, and line-height */
.industry-content h2 {
  font-size: 40px;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

/*
 * financial-services, healthcare-wellness, lifestyle, and home-design pages
 * each have a 3-column stats/features grid built with inline styles which
 * cannot be overridden by media queries. The class .industry-stats-grid is
 * added to those grid divs in the HTML files.
 */
.industry-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* Why-box in financial-services — replaces inline padding:48px so it is
   responsive. The class .industry-why-box is added to the div in the HTML. */
.industry-why-box {
  padding: 48px;
  background: var(--off-white);
  border: 1px solid var(--sand);
  border-radius: 8px;
  margin-bottom: 64px;
}

/* When these elements are the last child of .industry-content, let the
   section's padding-bottom provide the only gap — no double spacing. */
.industry-content > .industry-why-box:last-child,
.industry-content > .industry-stats-grid:last-child {
  margin-bottom: 0;
}

.industry-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── 1024px breakpoint ── */
@media (max-width: 1024px) {
  .industry-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ── 768px breakpoint ── */
@media (max-width: 768px) {
  /* Reduce horizontal padding and vertical section padding on mobile */
  .industry-content {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* H2 headings inside industry-content: scale down on mobile */
  .industry-content h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  /* Reduce block spacing between sections on mobile */
  .industry-section-block {
    margin-bottom: 40px;
  }

  /* Stats grids: collapse from 3 → 1 column */
  .industry-stats-grid {
    grid-template-columns: 1fr;
  }

  /* Why-box: reduce padding from 48px → 24px */
  .industry-why-box {
    padding: 24px;
  }

  /* Why-grid inside why-box: collapse from 3 → 1 column */
  .industry-why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* faq-heading was missing a mobile scale-down (48px desktop → 32px mobile) */
  .faq-heading {
    font-size: 32px;
    line-height: 1.2;
  }
}

/* ── 480px breakpoint ── */
@media (max-width: 480px) {
  .industry-content {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .industry-content h2 {
    font-size: 24px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  .industry-section-block {
    margin-bottom: 32px;
  }

  .industry-why-box {
    padding: 20px 16px;
  }

  /* niche-grid cards: reduce padding on small screens */
  .niche-grid-card {
    padding: 24px 20px;
  }

  /* final-cta-heading: further reduce below 40px for very small screens */
  .final-cta-heading {
    font-size: 32px;
    letter-spacing: -1px;
  }
}

/* ── HOMEPAGE TEAM — Responsive ── */
@media (max-width: 1024px) {
  .team-card {
    flex: 0 0 33.333%;
  }
  .team-heading {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .team {
    padding: 64px 20px;
  }
  .team-heading {
    font-size: 34px;
    line-height: 1.2;
  }
  .team-subtitle {
    font-size: 16px;
  }
  .team-card {
    flex: 0 0 50%;
  }
  .team-card-info {
    padding: 24px 18px 22px;
  }
  .team-card-name {
    font-size: 18px;
  }
  .team-card-bio {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .team-card {
    flex: 0 0 100%;
  }
  .team-card-photo-wrap {
    margin-bottom: -12px;
  }
  .team-heading {
    font-size: 30px;
  }
}

/* ── Client Logos ─────────────────────────── */
.client-logos {
  padding: 48px 0 56px;
  background-color: var(--cream);
  border-top: 1px solid var(--sand);
  overflow: hidden;
}

.client-logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.client-logos-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-gray);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
}

.client-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 56px;
  margin-bottom: 20px;
}

.client-logos-strip:last-child {
  margin-bottom: 0;
}

.client-logos-strip img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%) brightness(0);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.client-logos-strip img:hover {
  opacity: 0.85;
  filter: grayscale(100%) brightness(0);
}

@media (max-width: 768px) {
  .client-logos {
    padding: 36px 0 40px;
  }
  .client-logos-strip {
    gap: 20px 28px;
  }
  .client-logos-strip img {
    height: 32px;
  }
  .client-logos-label {
    font-size: 12px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .client-logos-strip {
    gap: 16px 24px;
  }
  .client-logos-strip img {
    height: 26px;
  }
}

/* ── AI Search / GEO ─────────────────────── */
.ai-search {
  padding: 80px 0;
  background-color: var(--cream);
  border-top: 1px solid var(--sand);
}

.ai-search-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.ai-search-heading {
  font-family: var(--font-editorial);
  font-weight: 250;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.ai-search-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 640px;
  margin: 0 auto 48px;
}

.ai-search-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ai-search-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ai-search-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ai-search-logo span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .ai-search {
    padding: 56px 0;
  }
  .ai-search-logos {
    gap: 32px;
  }
  .ai-search-logo img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .ai-search-logos {
    gap: 24px;
  }
  .ai-search-logo img {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   FOOTER CONTACT BLOCK
   ============================================ */
.footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-address {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-gray);
  font-style: normal;
  line-height: 1.6;
  margin-top: 12px;
}
.footer-email {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  margin-top: 8px;
}
.footer-email:hover {
  color: var(--orange);
}

/* Touch target minimum size for mobile */
@media (max-width: 768px) {
  .industry-card-link,
  .results-link,
  .btn-text-link,
  .breadcrumb-item a,
  .footer-col a,
  .social-icon {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }
}
