/* TitleRelay — Public marketing site (merged design) */

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

:root {
  --navy: #042C53;
  --blue: #185FA5;
  --blue-mid: #378ADD;
  --blue-light: #E6F1FB;
  --blue-dark: #0C447C;
  --teal: #1D9E75;
  --teal-light: #E1F5EE;
  --teal-dark: #085041;
  --green-light: #EAF3DE;
  --green-dark: #27500A;
  --amber-light: #FAEEDA;
  --amber-dark: #633806;
  --gray-border: rgba(0, 0, 0, 0.1);
  --text-primary: #111;
  --text-secondary: #555;
  --bg-primary: #fff;
  --bg-secondary: #f7f7f5;
  --on-brand: #fff;
  --callout-sub: #B5D4F4;
  --btn-callout-bg: #fff;
  --btn-callout-text: var(--navy);
  --brand-button: var(--navy);
  --surface-elevated: var(--bg-primary);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --radius-md: 8px;
  --radius-lg: 12px;
  --max-width: 1100px;
  --header-h: 68px;
  --font: 'DM Sans', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Keep --navy dark: it is used for primary buttons and the callout block. */
    --blue: #85B7EB;
    --blue-mid: #5a9de8;
    --blue-light: #0c2d4f;
    --blue-dark: #B5D4F4;
    --teal: #3ecf9a;
    --teal-light: #0a2e26;
    --teal-dark: #9FE1CB;
    --green-light: #173404;
    --green-dark: #C0DD97;
    --amber-light: #412402;
    --amber-dark: #FAC775;
    --gray-border: rgba(255, 255, 255, 0.12);
    --text-primary: #f0f0ee;
    --text-secondary: #aaa;
    --bg-primary: #1a1a18;
    --bg-secondary: #222220;
    --brand-button: var(--blue-mid);
    --surface-elevated: #252523;
    --btn-callout-bg: rgba(255, 255, 255, 0.12);
    --btn-callout-text: var(--on-brand);
    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.45);
  }
}

html {
  scroll-behavior: smooth;
  color-scheme: light dark;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-primary);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.serif { font-family: var(--serif); }

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  overflow: visible;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-primary);
  border-bottom: 0.5px solid var(--gray-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  max-width: calc(var(--max-width) + 5rem);
  margin-inline: auto;
}

.logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo span { color: var(--blue-mid); }

.logo.has-logo,
.footer-logo.has-logo {
  line-height: 0;
}

.logo-image {
  height: 40px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
}

.footer-logo .logo-image {
  height: 32px;
  max-width: 200px;
}

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

.nav-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active { color: var(--text-primary); }

.nav-link.active { font-weight: 500; }

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-signin {
  background: none;
  border: none;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px 12px;
  font-family: inherit;
}

.nav-signin:hover { color: var(--text-primary); }

.nav-cta {
  background: var(--brand-button);
  color: var(--on-brand);
  border: none;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.88; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
}

.menu-toggle svg { width: 20px; height: 20px; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 98;
  transition: opacity 0.3s;
}

.nav-overlay.open { opacity: 1; pointer-events: auto; }

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg-primary);
  border-left: 0.5px solid var(--gray-border);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.5px solid var(--gray-border);
}

.nav-mobile-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--bg-secondary);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
}

.nav-mobile-close svg { width: 18px; height: 18px; }

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.nav-mobile-links a {
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}

.nav-mobile-links a:hover { background: var(--bg-secondary); color: var(--text-primary); }
.nav-mobile-links a.active { color: var(--blue-mid); background: var(--blue-light); }

.nav-mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--gray-border);
  margin-top: auto;
}

body.nav-open { overflow: hidden; }

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.88; }

.btn-primary {
  background: var(--brand-button);
  color: var(--on-brand);
  font-size: 15px;
  padding: 13px 30px;
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  padding: 10px 22px;
  border: 0.5px solid var(--gray-border);
}

.btn-link {
  background: none;
  font-size: 15px;
  color: var(--blue-mid);
  padding: 13px 8px;
}

/* ── Hero (home) ── */

.hero {
  padding: 5rem 2.5rem 3.5rem;
  border-bottom: 0.5px solid var(--gray-border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
}

.hero-content {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 2rem;
}

.hero-badge i { font-size: 13px; }

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue-mid);
  font-family: var(--serif);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-visual {
  min-width: 0;
}

.hero-pipeline {
  background: var(--surface-elevated);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.hero-pipeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 0.5px solid var(--gray-border);
}

.hero-pipeline-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-pipeline-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 2px 8px;
  border-radius: 99px;
}

.hero-pipeline-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-live 2s ease-in-out infinite;
}

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

.hero-pipeline .pipe-step {
  margin-bottom: 2px;
  background: var(--bg-primary);
  border-color: transparent;
}

.hero-pipeline .pipe-step.active {
  background: var(--bg-secondary);
  border-color: var(--blue-mid);
}

.hero-pipeline .pipe-step:last-child {
  margin-bottom: 0;
}

/* ── Stats ── */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-border);
  border-top: 0.5px solid var(--gray-border);
  border-bottom: 0.5px solid var(--gray-border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-primary);
  padding: 2.5rem;
  text-align: center;
}

.stat-num {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--blue-mid);
  margin-bottom: 6px;
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  width: 100%;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
  max-width: 220px;
}

/* ── Sections ── */

.section {
  padding: 5rem 2.5rem;
  border-top: 0.5px solid var(--gray-border);
  overflow: visible;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  overflow: visible;
  padding-inline: 2px;
  max-width: 100%;
}

.section-lead,
.section-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

/* ── Page hero (inner pages) ── */

.page-hero {
  padding: 4.5rem 2.5rem 3rem;
  border-bottom: 0.5px solid var(--gray-border);
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--blue-mid);
  font-family: var(--serif);
}

.page-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 580px;
}

/* ── Pipeline ── */

.pipeline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: var(--max-width);
}

.pipe-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 0.5px solid var(--gray-border);
}

.pipe-step.active {
  background: var(--bg-primary);
  border-color: var(--blue-mid);
}

.pipe-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.pipe-icon.synced { background: var(--teal-light); color: var(--teal-dark); }
.pipe-icon.parsed { background: var(--blue-light); color: var(--blue-dark); }
.pipe-icon.review { background: var(--amber-light); color: var(--amber-dark); }
.pipe-icon.submitted { background: var(--green-light); color: var(--green-dark); }

.pipe-text { flex: 1; min-width: 0; }
.pipe-label { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.pipe-detail { font-size: 12px; color: var(--text-secondary); }

.pipe-status {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-synced { background: var(--teal-light); color: var(--teal-dark); }
.status-parsed { background: var(--blue-light); color: var(--blue-dark); }
.status-review { background: var(--amber-light); color: var(--amber-dark); }
.status-submitted { background: var(--green-light); color: var(--green-dark); }

/* ── Features grid ── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-border);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature {
  background: var(--bg-primary);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 18px;
}

.feature-title { font-size: 14px; font-weight: 500; }
.feature-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── Steps ── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.5rem;
}

.step-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue-mid);
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
}

.step-title { font-size: 14px; font-weight: 500; margin-bottom: 0.5rem; line-height: 1.3; }
.step-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── Callout ── */

.callout-wrap {
  padding: 0 2.5rem 5rem;
  border-top: 0.5px solid var(--gray-border);
  padding-top: 5rem;
}

.callout {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.callout-q {
  font-size: clamp(1.35rem, 3vw, 1.625rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--on-brand);
}

.callout-sub {
  font-size: 15px;
  color: var(--callout-sub);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2rem;
}

.btn-callout {
  background: var(--btn-callout-bg);
  color: var(--btn-callout-text);
  font-size: 14px;
  padding: 11px 26px;
  border-radius: var(--radius-md);
  font-weight: 500;
  display: inline-block;
  border: 0.5px solid transparent;
}

@media (prefers-color-scheme: dark) {
  .btn-callout {
    border-color: rgba(255, 255, 255, 0.22);
  }
}

/* ── About ── */

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

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-border);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-item {
  background: var(--bg-primary);
  padding: 1.5rem;
}

.value-item h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.value-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-border);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-card {
  background: var(--bg-primary);
  padding: 2rem 1.5rem;
  text-align: center;
}

.team-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  color: var(--blue-mid);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin: 0 auto 1rem;
}

.team-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 0.25rem; }
.team-card .role { font-size: 12px; color: var(--teal); margin-bottom: 0.5rem; }
.team-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── Services ── */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 1.5rem;
  background: var(--bg-secondary);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-md);
}

.service-num {
  font-size: 2rem;
  font-weight: 300;
  font-family: var(--serif);
  font-style: italic;
  color: var(--blue-mid);
  opacity: 0.45;
  line-height: 1;
}

.service-item h3 { font-size: 14px; font-weight: 500; margin-bottom: 0.35rem; }
.service-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--blue-light);
  color: var(--blue-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-border);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-card {
  background: var(--bg-primary);
  padding: 2rem 1.75rem;
}

.pricing-card.featured {
  background: var(--bg-secondary);
  box-shadow: inset 0 0 0 1px var(--blue-mid);
}

.plan-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.pricing-card h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.25rem; }
.pricing-card .price { font-size: 13px; color: var(--text-secondary); margin-bottom: 1.5rem; }

.pricing-card li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1.1rem;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 12px;
}

.pricing-card .btn { width: 100%; margin-top: 1.5rem; }

/* ── Contact ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { font-size: 14px; font-weight: 500; margin-bottom: 1.5rem; }

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-method-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  color: var(--blue-mid);
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-method strong { display: block; font-size: 13px; font-weight: 500; margin-bottom: 0.15rem; }
.contact-method span,
.contact-method a { font-size: 13px; color: var(--text-secondary); }
.contact-method a:hover { color: var(--blue-mid); }

.contact-form {
  background: var(--bg-secondary);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: var(--bg-primary);
  border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
}

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

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

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

.form-success {
  display: none;
  padding: 0.85rem 1rem;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--radius-md);
  font-size: 13px;
  margin-bottom: 1rem;
}

.form-success.visible { display: block; }

.quick-links a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 0.25rem 0;
}

.quick-links a:hover { color: var(--text-primary); }

/* ── Footer ── */

.site-footer {
  border-top: 0.5px solid var(--gray-border);
  padding: 3rem 2.5rem 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
}

.footer-brand { max-width: 260px; }

.footer-logo {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-logo span { color: var(--blue-mid); }

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.footer-cols { display: flex; gap: 3rem; flex-wrap: wrap; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--gray-border);
  font-size: 12px;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--max-width);
  margin-inline: auto;
}

.footer-bottom a { color: var(--text-secondary); }
.footer-bottom a:hover { color: var(--text-primary); }

/* ── Reveal animation ── */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */

@media (max-width: 900px) {
  .nav-desktop,
  .header-actions { display: none; }

  .menu-toggle { display: flex; }

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

  .hero-visual {
    max-width: 480px;
  }

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

@media (max-width: 700px) {
  .header-inner { padding: 1rem 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 2.5rem; }
  .stats { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .page-hero { padding: 3rem 1.25rem 2rem; }
  .callout-wrap { padding: 3rem 1.25rem; }
  .callout { padding: 2rem; }
  .site-footer { padding: 2rem 1.25rem 1.5rem; }
  .footer-top { flex-direction: column; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid,
  .team-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; gap: 0.75rem; }
  .form-row { grid-template-columns: 1fr; }

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