﻿/* ============================================================
   MyWaypoint Digital — Main Stylesheet
   DS.1.5 — CSS Consolidation & Design System Cleanup
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --clr-bg: #f9f9f7;
  --clr-surface: #ffffff;
  --clr-border: #e2e2dc;
  --clr-text: #1a1a1a;
  --clr-muted: #5a5a5a;
  --clr-accent: #065595;
  --clr-accent-lt: #e8f0fb;
  --clr-accent-hv: #044478;
  --clr-red: #c0392b;
  --radius: 8px;
  --max-w: 1100px;
  --font: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

/* ── Reduced Motion (A.4.1) ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .card:hover,
  .svc-overview-card:hover,
  .svc-pillar-card:hover,
  .pricing-card:hover,
  .pricing-hub-card:hover,
  .enhancement-card:hover {
    transform: none;
  }
}

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: var(--clr-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Inline link distinction (WCAG 1.4.1 / link-in-text-block) ──
   Links inside prose paragraphs must be distinguishable without
   relying on colour alone. Underline satisfies this requirement.
   Applies to article body, callout tips, glossary, muted text,
   sidebar cards, deliverable cards, list items, and pricing signal
   contexts where link colour contrast vs surrounding text is < 3:1. */
.article-body p a,
.article-body li a,
.article-callout--tip a,
.article-callout a,
.callout--accent p a,
.gloss-still-confused p a,
.text-muted a,
.container--narrow p a,
.dl-sidebar-card p a,
.deliverable-card p a,
.showcase-pricing-signal span a,
.section-alt .container > p a,
.privacy-content p a,
article ol li a,
article ul li a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 780px;
}

.container--narrow-sm {
  max-width: 640px;
}

section {
  padding: 2.5rem 0;
}

.section-alt {
  background: var(--clr-surface);
}

/* ── Typography ── */
h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  color: var(--clr-muted);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}

.btn-primary:hover {
  background: var(--clr-accent-hv);
  border-color: var(--clr-accent-hv);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.btn-outline:hover {
  background: var(--clr-accent-lt);
  text-decoration: none;
}

.btn-outline--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline--light:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.btn-secondary {
  background: var(--clr-surface);
  color: var(--clr-accent);
  border-color: var(--clr-border);
}

.btn-secondary:hover {
  background: var(--clr-accent-lt);
  border-color: var(--clr-accent);
  text-decoration: none;
}

.btn-small {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-light {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
  align-self: flex-start;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.btn[aria-busy="true"] {
  opacity: 0.7;
  cursor: wait;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn-group--center {
  justify-content: center;
}

/* ── Navigation ── */
.site-header {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  list-style: none;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--clr-accent);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  cursor: pointer;
  background: none;
  transition: border-color 0.15s, color 0.15s;
}

.lang-toggle:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}

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

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
  white-space: nowrap;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--clr-accent);
}

.nav-dropdown-toggle .nav-caret {
  font-size: 0.65rem;
  transition: transform 0.18s;
  display: inline-block;
}

.nav-has-dropdown.open .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 200;
  padding: 0.4rem 0;
}

.nav-has-dropdown.open .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--clr-accent-lt);
  color: var(--clr-accent);
  text-decoration: none;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--clr-border);
  margin: 0.3rem 0;
}

/* Footer contains nav-has-dropdown markup — always suppress it */
.site-footer .nav-dropdown-toggle { display: none; }
.site-footer .nav-dropdown {
  display: block !important;
  position: static !important;
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
  background: transparent !important;
}
.site-footer .nav-dropdown a {
  display: list-item;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  white-space: normal;
}
.site-footer .nav-dropdown a:hover {
  background: transparent;
  color: var(--clr-accent);
}

.nav-group-label {
  display: block;
  padding: 0.45rem 1.1rem 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  pointer-events: none;
  user-select: none;
}

.nav-group-label:first-child {
  padding-top: 0.3rem;
}

.nav-section-desc {
  display: block;
  padding: 0.4rem 1.1rem 0.5rem;
  font-size: 0.75rem;
  color: var(--clr-muted);
  font-style: italic;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 0.2rem;
  pointer-events: none;
  user-select: none;
}


/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--clr-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ── Focus ── */
:focus-visible {
  outline: 3px solid var(--clr-accent);
  outline-offset: 2px;
}

/* ── Hero (homepage) ── */
.hero {
  background: linear-gradient(135deg, #0d2d52 0%, #065595 60%, #1e6091 100%);
  color: #fff;
  padding: 5.5rem 0 5rem;
}

.hero h1 {
  color: #fff;
  max-width: 680px;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

/* ── Page Hero (inner pages) ── */
section.page-hero {
  background: linear-gradient(135deg, #0d2d52, #065595) !important;
  color: #fff;
  padding: 3.5rem 0;
}

section.page-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-top: 0;
}

section.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-top: 0.5rem;
}

section.page-hero .section-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.card {
  background:
    radial-gradient(circle at top left, rgba(6,85,149,0.05), transparent 55%),
    #ffffff;
  border: 1px solid rgba(6,85,149,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(6,85,149,0.30);
  box-shadow: 0 8px 20px rgba(6,85,149,0.08);
}

.card--compact {
  padding: 1rem 1.1rem;
}

.card--feature {
  padding: 1.75rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.card--feature:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  border-color: #c5cfe0;
}

.card h3 {
  color: var(--clr-text);
}

/* ── Icon Box (card-icon, pricing-icon, enhancement-icon all share this) ── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-accent-lt);
  border-radius: var(--radius);
  color: var(--clr-accent);
  flex-shrink: 0;
}

.icon-box--sm { width: 2rem;   height: 2rem; }
.icon-box--md { width: 2.5rem; height: 2.5rem; }
.icon-box--lg { width: 3rem;   height: 3rem; }

.icon-box svg { display: block; }

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-accent-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--clr-accent);
}

.pricing-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--clr-accent-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.enhancement-icon {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--clr-accent-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.card-icon svg,
.pricing-icon svg,
.enhancement-icon svg {
  display: block;
}

/* ── Why Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text);
}

.why-item::before {
  content: "\2713";
  color: var(--clr-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.why-primary {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.35rem;
}

/* ── Ecosystem Cards ── */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.eco-card {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--clr-surface);
  transition: box-shadow 0.2s;
}

.eco-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.eco-card a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-accent);
}

.eco-card p {
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0d2d52, #065595);
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0.5rem auto 0;
}

.cta-banner .btn-group {
  justify-content: center;
}

.cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cta-body {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.cta-subtext {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.dc-blurb {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.dc-blurb--muted {
  color: var(--clr-muted);
}

/* ── CTA Trust Grid ── */
.cta-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  max-width: 560px;
  margin: 0 auto 1.75rem;
  text-align: left;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-trust-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
}

/* ── Starter Section ── */
.starter {
  background: var(--clr-accent-lt);
}

.starter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

/* ── MyDataHub Callout ── */
.datahub-callout {
  background: var(--clr-accent-lt);
}

.datahub-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.datahub-callout .section-label { color: var(--clr-accent); }
.datahub-callout h2             { color: var(--clr-text); }
.datahub-callout p              { color: var(--clr-muted); max-width: 520px; margin: 0; }

.datahub-callout .btn-outline {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
  margin-top: 0.5rem;
}

.datahub-callout .btn-outline:hover {
  background: var(--clr-accent);
  color: #fff;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.75rem 0;
}

.trust-bar-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--clr-muted);
}

/* ── Callout Component ── */
.callout {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.callout--accent {
  background: var(--clr-accent-lt);
  border-color: #c5d8f0;
  border-left: 4px solid var(--clr-accent);
}

/* ── Disclosure ── */
.disclosure {
  background: var(--clr-accent-lt);
  border: 1px solid #c5d8f0;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-top: 1.5rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.disclosure::before {
  content: "\2192";
  color: var(--clr-accent);
  flex-shrink: 0;
  font-style: normal;
}

/* ── Pill / Badge ── */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-block;
  background: var(--clr-accent-lt);
  color: var(--clr-accent);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.pill-group--grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 0.5rem;
}


/* ── Services Page ── */
.service-block {
  margin-bottom: 3rem;
}

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

.service-block h3 {
  font-size: 1.05rem;
  color: var(--clr-muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.4rem 0.75rem;
  margin-top: 0.75rem;
}

.service-list li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--clr-muted);
}

.service-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-size: 0.8rem;
  top: 0.15rem;
}

.service-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-section-header .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.svc-hero {
  padding: 3rem 0 2.5rem;
}

.svc-hero .section-label { color: rgba(255, 255, 255, 0.7); }

.svc-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 700px;
}

.svc-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.svc-hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.svc-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.svc-reassurance {
  max-width: var(--max-w);
  margin: 0.85rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.svc-pillar-also {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--clr-muted);
}

.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.svc-overview-card {
  background:
    radial-gradient(
      circle at top left,
      rgba(6,85,149,0.06),
      transparent 60%
    ),
    #ffffff;
  border: 1px solid rgba(6,85,149,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.svc-overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6,85,149,0.30);
  box-shadow: 0 8px 20px rgba(6,85,149,0.08);
}

.svc-overview-card .card-icon { margin-bottom: 0.25rem; }
.svc-overview-card h3         { margin-bottom: 0.25rem; }
.svc-overview-card p          { font-size: 0.9rem; flex: 1; }

.svc-overview-card a {
  font-size: 0.88rem;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.svc-pillar-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.svc-pillar-card {
  background:
    radial-gradient(
      circle at top left,
      rgba(6,85,149,0.06),
      transparent 60%
    ),
    #ffffff;
  border: 1px solid rgba(6,85,149,0.12);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.svc-pillar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6,85,149,0.30);
  box-shadow: 0 8px 20px rgba(6,85,149,0.08);
}

.svc-pillar-card-icon  { color: var(--clr-accent); margin-bottom: 0.25rem; }
.svc-pillar-card h3    { font-size: 1.15rem; margin: 0; }
.svc-pillar-card p     { font-size: 0.9rem; color: var(--clr-muted); flex: 1; margin: 0; }

.svc-pillar-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-accent);
  text-decoration: none;
  margin-top: 0.25rem;
}

.svc-pillar-card-link:hover { text-decoration: underline; }

.svc-highlights {
  margin-top: 1.5rem;
  padding: 1.1rem 1.4rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.svc-highlights-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent);
  white-space: nowrap;
  margin: 0;
}

.svc-highlights ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
}

.svc-highlights ul li {
  font-size: 0.88rem;
  color: var(--clr-muted);
  padding-left: 1rem;
  position: relative;
}

.svc-highlights ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.audience-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
}

.audience-card .aud-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.problem-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-accent);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--clr-muted);
}

.problem-item strong {
  display: block;
  color: var(--clr-text);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.deliverable-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.deliverable-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.deliverable-card h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.deliverable-card p  { font-size: 0.85rem; margin: 0; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0;
  margin-top: 2rem;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem 1.5rem;
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--clr-border);
  z-index: 0;
}

.process-step:last-child::before { display: none; }

.process-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}

.process-step h3 { font-size: 0.88rem; margin-bottom: 0.2rem; }
.process-step p  { font-size: 0.8rem; margin: 0; }

.related-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.related-services a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-accent);
  background: var(--clr-surface);
  transition: border-color 0.15s, background 0.15s;
}

.related-services a:hover {
  border-color: var(--clr-accent);
  background: var(--clr-accent-lt);
  text-decoration: none;
}

/* ── About Page ── */
.about-lead {
  font-size: 1.15rem;
  color: var(--clr-text);
  line-height: 1.7;
}

.value-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.value-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--clr-muted);
}

.value-list li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--clr-accent);
}

/* ── Founder Profile ── */
.founder-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--clr-border);
  display: block;
}

.founder-name     { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.2rem; }
.founder-title    { font-size: 0.88rem; font-weight: 600; color: var(--clr-accent); margin-bottom: 0.2rem; }
.founder-location { font-size: 0.82rem; color: var(--clr-muted); margin-bottom: 0.75rem; }

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.founder-tags span {
  padding: 0.3rem 0.75rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ── Founder Quote ── */
.founder-quote-wrap {
  padding: 3rem 0 2.5rem;
  background: var(--clr-bg);
}

blockquote.founder-quote {
  margin: 0 0 0 auto;
  max-width: 560px;
  text-align: right;
  padding: 0;
  border: none;
  background: none;
  position: relative;
}

.founder-quote-mark {
  display: block;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--clr-accent);
  opacity: 0.18;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  user-select: none;
}

.founder-quote-primary {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--clr-text);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.founder-quote-secondary {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--clr-muted);
  font-style: italic;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.founder-quote-signature {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.82rem;
  color: var(--clr-muted);
  font-style: normal;
}

.founder-quote-signature strong {
  font-size: 0.9rem;
  color: var(--clr-text);
  font-weight: 600;
}

/* ── Contact Page ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-trust-block {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-trust-block h3 { font-size: 1rem; margin-bottom: 0.75rem; }

.contact-trust-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-trust-block li { font-size: 0.88rem; color: var(--clr-text); }

/* ── Forms ── */
.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--clr-surface);
  color: var(--clr-text);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
}

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

.form-notice { font-size: 0.8rem; color: var(--clr-muted); margin-top: 1rem; }

.form-status {
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-status[hidden] { display: none; }

.form-status--info    { background: var(--clr-accent-lt); border: 1px solid #c5d8f0; color: var(--clr-accent); }
.form-status--error   { background: #fdf0f0; border: 1px solid #f5c6c6; color: #8b1a1a; }
.form-status--warning { background: #fffbea; border: 1px solid #f0d060; color: #6b5000; }
.form-status--warning a { color: #6b5000; font-weight: 600; }

.field-error { display: block; font-size: 0.8rem; color: var(--clr-red); margin-top: 0.3rem; }

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] { border-color: var(--clr-red); }

.form-success[hidden] { display: none; }

.form-success {
  background: #eaf5ea;
  border: 1px solid #a3d4a3;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #2d6a2d;
  font-size: 0.92rem;
  margin-top: 1rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── Privacy Page ── */
.privacy-content { max-width: 780px; }

.privacy-content h2 { margin-top: 2.5rem; font-size: 1.25rem; }
.privacy-content h2:first-of-type { margin-top: 0; }

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
  color: var(--clr-muted);
}

.privacy-content ul li { margin-bottom: 0.35rem; }

.privacy-content .privacy-meta {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--clr-border);
}

/* ── 404 Page ── */
.error-page { text-align: center; padding: 6rem 0; }

.error-page .error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
.error-page p  { max-width: 480px; margin: 0 auto 2rem; }

/* ── Footer ── */
.site-footer {
  background: #0d1f35;
  color: rgba(255, 255, 255, 0.75); /* A.1.1: raised from 0.65 — contrast ~5.6:1 against #0d1f35 */
  padding: 3rem 0 2rem;
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.footer-brand span { color: #6fa3d8; }

.footer-brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  margin-bottom: 0.75rem;
}

.footer-col h3 { /* A.1.1: was h4 — updated to match heading hierarchy fix */
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }

.footer-col a { color: rgba(255, 255, 255, 0.75); font-size: 0.85rem; } /* A.1.1: raised from 0.6 — contrast ~5.6:1 */
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.75); /* A.1.1: overrides global p color (#5a5a5a on #0d1f35 = ~1.6:1). Now ~5.6:1 */
  margin-bottom: 0.5rem;
}

.footer-privacy-statement {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.70);
  font-style: italic;
}



/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-card {
  background:
    radial-gradient(circle at top left, rgba(6,85,149,0.06), transparent 60%),
    #ffffff;
  border: 1px solid rgba(6,85,149,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6,85,149,0.30);
  box-shadow: 0 8px 20px rgba(6,85,149,0.08);
}

.pricing-card.featured {
  position: relative;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 2px var(--clr-accent-lt);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(6,85,149,0.15);
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}

.pricing-card.enterprise {
  grid-column: 1 / -1;
  background: var(--clr-accent-lt);
  border-color: rgba(6,85,149,0.18);
  border-radius: calc(var(--radius) * 2);
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}

.pricing-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent);
}

.pricing-label--enterprise {
  width: fit-content;
  background: var(--clr-text);
  color: #fff !important;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: flex-start;
  line-height: 1.6;
}

.pricing-card h3 { font-size: 1.1rem; margin: 0; }

.pricing-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
}

.pricing-amount span { font-size: 0.85rem; font-weight: 400; color: var(--clr-muted); }

.pricing-desc { font-size: 0.88rem; color: var(--clr-muted); margin: 0; flex: 1; }

.pricing-note {
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
  text-align: center;
}

.pricing-includes {
  list-style: none;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.pricing-includes li {
  font-size: 0.85rem;
  color: var(--clr-muted);
  padding-left: 1.4rem;
  position: relative;
}

.pricing-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-includes--standalone { margin-top: 0; }

.pricing-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-hub-card {
  background:
    radial-gradient(circle at top left, rgba(6,85,149,0.06), transparent 60%),
    #ffffff;
  border: 1px solid rgba(6,85,149,0.12);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6,85,149,0.30);
  box-shadow: 0 8px 20px rgba(6,85,149,0.08);
}

.pricing-hub-card h2 { font-size: 1.25rem; margin: 0; }
.pricing-hub-card p  { flex: 1; font-size: 0.92rem; }
.pricing-hub-card .btn { align-self: flex-start; margin-top: 0.5rem; }

.enterprise-identity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 160px;
  flex-shrink: 0;
}

.enterprise-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ── Enhancements ── */
.enhancements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.enhancement-card {
  background:
    radial-gradient(circle at top left, rgba(6,85,149,0.06), transparent 60%),
    #ffffff;
  border: 1px solid rgba(6,85,149,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.enhancement-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6,85,149,0.30);
  box-shadow: 0 8px 20px rgba(6,85,149,0.08);
}

.enhancement-card h3    { font-size: 1rem; margin: 0; }
.enhancement-card > p   { font-size: 0.9rem; margin: 0; }
.enhancement-note       { font-size: 0.8rem; color: var(--clr-muted); font-style: italic; margin: 0; }

.enhancement-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-top: auto;
  padding-top: 0.75rem;
}

.enhancement-card .btn { align-self: flex-start; margin-top: 0.25rem; }

.enhancement-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--clr-accent-lt);
  border: 1px solid #c5d8f0;
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: 2rem;
}

.enhancement-callout h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.enhancement-callout p  { font-size: 0.9rem; color: var(--clr-muted); margin: 0; }
.enhancement-callout .btn { flex-shrink: 0; }

/* ── Hosting Layout ── */
.hosting-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.hosting-why h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.hosting-why p  { font-size: 0.9rem; }

/* ── Ownership Card ── */
.ownership-card {
  background: var(--clr-accent-lt);
  border: 1px solid rgba(26, 79, 138, 0.2);
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
}

.ownership-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.ownership-header h3 { margin: 0; font-size: 1.1rem; }
.ownership-header .pricing-icon { background: #fff; flex-shrink: 0; }

.ownership-statement {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin: 1rem 0 0.75rem;
}

.ownership-trust { margin-top: 0.25rem !important; }

/* ── Samples / Showcase ── */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.sample-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.sample-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-color: #c5cfe0;
}

.sample-preview {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.sample-preview-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 0.75rem;
  gap: 0.4rem;
}

.preview-professional { background: linear-gradient(135deg, #1b2d4f 0%, #243d6e 100%); }
.preview-professional .preview-nav { background: rgba(197, 160, 40, 0.25); }
.preview-professional .preview-h   { background: rgba(197, 160, 40, 0.7); }
.preview-professional .preview-bar { background: rgba(255, 255, 255, 0.15); }

.preview-restaurant { background: linear-gradient(135deg, #8b3a2a 0%, #c4522a 100%); }
.preview-restaurant .preview-nav { background: rgba(232, 201, 160, 0.3); }
.preview-restaurant .preview-h   { background: rgba(232, 201, 160, 0.8); }
.preview-restaurant .preview-bar { background: rgba(255, 255, 255, 0.15); }

.preview-nonprofit { background: linear-gradient(135deg, #1a7a8c 0%, #157090 100%); }
.preview-nonprofit .preview-nav { background: rgba(245, 166, 35, 0.25); }
.preview-nonprofit .preview-h   { background: rgba(245, 166, 35, 0.7); }
.preview-nonprofit .preview-bar { background: rgba(255, 255, 255, 0.15); }

.preview-tourism { background: linear-gradient(135deg, #2a5c45 0%, #1e4433 100%); }
.preview-tourism .preview-nav { background: rgba(212, 168, 67, 0.25); }
.preview-tourism .preview-h   { background: rgba(212, 168, 67, 0.7); }
.preview-tourism .preview-bar { background: rgba(255, 255, 255, 0.15); }

.preview-startup { background: linear-gradient(135deg, #0b0b18 0%, #1c1c2e 100%); }
.preview-startup .preview-nav { background: rgba(124, 58, 237, 0.35); }
.preview-startup .preview-h   { background: rgba(124, 58, 237, 0.8); }
.preview-startup .preview-bar { background: rgba(124, 58, 237, 0.2); }

.preview-nav-bar  { height: 10px; border-radius: 3px; width: 100%; flex-shrink: 0; }
.preview-hero-block { flex: 1; border-radius: 4px; margin-top: 0.25rem; }
.preview-rows     { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.25rem; }
.preview-row      { height: 7px; border-radius: 3px; opacity: 0.45; }

.sample-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sample-industry {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--clr-accent);
  margin-bottom: 0.4rem;
}

.sample-card h3 { font-size: 1.1rem; color: var(--clr-text); margin-bottom: 0.5rem; }
.sample-card p  { font-size: 0.9rem; margin-bottom: 1rem; }

.sample-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.sample-highlights li {
  font-size: 0.83rem;
  color: var(--clr-muted);
  padding-left: 1.1rem;
  position: relative;
}

.sample-highlights li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-size: 0.75rem;
  top: 0.1rem;
}

.sample-card .btn { align-self: flex-start; }

/* ── Industry Comparison Cards ── */

.ind-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (max-width: 768px) {
  .ind-compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ind-compare-grid {
    grid-template-columns: 1fr;
  }
}

.ind-compare-card {
  position: relative;
  overflow: hidden;
  background: rgba(6, 85, 149, 0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 1.25rem 1.25rem 1.1rem;
}

.ind-compare-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #065595, #2B79C2);
}

.ind-compare-card .icc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.ind-compare-card .icc-icon {
  flex-shrink: 0;
  color: var(--clr-accent);
  opacity: 0.75;
  display: flex;
}

.ind-compare-card .icc-industry {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-accent);
  margin: 0;
}

.ind-compare-card .icc-goal {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  margin: 0 0 0.4rem;
}

.ind-compare-card .icc-desc {
  font-size: 0.83rem;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Feature Cards (Templates / Showcase) ── */
.feature-cards-section { background: var(--clr-surface); }

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  color: #fff;
  min-height: 280px;
}

.feature-card--templates { background: linear-gradient(135deg, #0d2d52, #065595); }
.feature-card--showcase  { background: linear-gradient(135deg, #1a3a5c, #1e6091); }

.feature-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3   { font-size: 1.3rem; color: #fff; margin-bottom: 0.6rem; }
.feature-card p    { color: rgba(255, 255, 255, 0.8); flex: 1; margin-bottom: 1.5rem; font-size: 0.97rem; }

.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.two-col-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.two-col-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  border-color: #c5cfe0;
}

.two-col-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.two-col-card p  { flex: 1; }


/* ── Article Layout (style.css owns the insights hub; design-lab.css owns DL article variants) ── */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.article-body { min-width: 0; }

.article-body h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.article-body h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.article-body p          { margin-bottom: 1.1rem; }
.article-body ul,
.article-body ol         { padding-left: 1.5rem; margin-bottom: 1.1rem; color: var(--clr-muted); }
.article-body li         { margin-bottom: 0.4rem; }
.article-body strong     { color: var(--clr-text); }
.article-body a          { color: var(--clr-accent); }

.article-hero { padding: 3.5rem 0 2.5rem; }

.article-hero .section-label { color: rgba(255, 255, 255, 0.7); }

.article-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  max-width: 760px;
}

.article-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  font-size: 1rem;
  margin-top: 0.6rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.article-meta span { display: flex; align-items: center; gap: 0.35rem; }

.article-summary {
  background: var(--clr-accent-lt);
  border: 1px solid #c5d8f0;
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.article-hero .article-summary {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
}

.article-summary h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-accent);
  margin-bottom: 0.6rem;
}

.article-summary ul { padding-left: 1.25rem; margin: 0; }
.article-summary li { font-size: 0.9rem; color: var(--clr-muted); margin-bottom: 0.3rem; }

.toc {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.toc h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
  margin-bottom: 0.75rem;
}

.toc ol  { padding-left: 1.25rem; margin: 0; }
.toc li  { font-size: 0.88rem; margin-bottom: 0.35rem; }
.toc a   { color: var(--clr-accent); }

.article-callout {
  background: var(--clr-accent-lt);
  border: 1px solid #c5d8f0;
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: var(--clr-muted);
}

.article-callout strong { color: var(--clr-accent); }

.article-sidebar { position: sticky; top: 80px; }

.sidebar-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.sidebar-card h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
  margin-bottom: 0.75rem;
}

.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-card li a { font-size: 0.88rem; color: var(--clr-accent); }
.sidebar-card li a:hover { text-decoration: underline; }

.sidebar-cta {
  background: linear-gradient(135deg, #0d2d52, #065595);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.sidebar-cta h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.sidebar-cta p  { color: rgba(255, 255, 255, 0.75); font-size: 0.85rem; margin-bottom: 1rem; }
.sidebar-cta .btn-primary { width: 100%; text-align: center; }

.article-faq { margin-top: 1rem; }

.article-faq details {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
}

.article-faq summary {
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--clr-text);
}

.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after { content: "+"; color: var(--clr-accent); font-size: 1.1rem; flex-shrink: 0; }
.article-faq details[open] summary::after { content: "\2212"; }
.article-faq details[open] { border-color: var(--clr-accent); }
.article-faq details p { padding: 0 1.1rem 1rem; font-size: 0.92rem; margin: 0; }

.related-resources {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.related-resource-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.related-resource-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  border-color: #c5cfe0;
  text-decoration: none;
}

.related-resource-card .rr-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--clr-accent); }
.related-resource-card .rr-title { font-size: 0.92rem; font-weight: 600; color: var(--clr-text); }
.related-resource-card .rr-desc  { font-size: 0.82rem; color: var(--clr-muted); margin: 0; }

.insights-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.insights-category-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.insights-category-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  border-color: #c5cfe0;
}

.insights-category-card .cat-icon  { font-size: 1.6rem; margin-bottom: 0.25rem; }
.insights-category-card h3         { font-size: 1.05rem; margin-bottom: 0.1rem; }
.insights-category-card p          { font-size: 0.88rem; flex: 1; }
.insights-category-card .cat-count { font-size: 0.75rem; font-weight: 600; color: var(--clr-accent); text-transform: uppercase; letter-spacing: 0.06em; }

.article-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.article-list-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
}

.article-list-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  border-color: #c5cfe0;
  text-decoration: none;
}

.article-list-item .ali-cat   { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--clr-accent); }
.article-list-item .ali-title { font-size: 1rem; font-weight: 600; color: var(--clr-text); }
.article-list-item .ali-desc  { font-size: 0.88rem; color: var(--clr-muted); margin: 0; }
.article-list-item .ali-meta  { font-size: 0.78rem; color: var(--clr-muted); margin-top: 0.2rem; }

.insights-search { display: flex; gap: 0.75rem; margin-top: 1.5rem; max-width: 520px; }

.insights-search input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--clr-surface);
  color: var(--clr-text);
}

.insights-search input:focus { outline: none; border-color: var(--clr-accent); }

/* ── Template Selection (contact.html) ── */
.template-selected-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-accent);
  margin-bottom: 0.2rem;
}

.template-selected-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  background: var(--clr-accent-lt);
  border: 1px solid #c5d8f0;
  border-radius: var(--radius);
  padding: 0.5rem 0.85rem;
  margin-bottom: 0;
}

/* ── Template Context Panel ── */
.tpl-context-panel {
  background: var(--clr-accent-lt);
  border: 1px solid #c7d7f8;
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius);
  padding: 1rem 1.25rem 1.1rem;
  margin-bottom: 1.5rem;
}

.tpl-context-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.tpl-context-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent);
}

.tpl-context-change { font-size: 0.78rem; color: var(--clr-accent); text-decoration: none; white-space: nowrap; }
.tpl-context-change:hover { text-decoration: underline; }
.tpl-context-name { font-size: 1.05rem; font-weight: 700; color: var(--clr-text); margin: 0 0 0.75rem; }

.tpl-context-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.3rem; }

.tpl-context-checklist li {
  font-size: 0.875rem;
  color: var(--clr-text);
  padding-left: 1.4rem;
  position: relative;
}

.tpl-context-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.tpl-qualify-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-muted);
}

.tpl-qualify-divider::before,
.tpl-qualify-divider::after { content: ""; flex: 1; height: 1px; background: var(--clr-border); }

.tpl-qualify-optional { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.78rem; color: var(--clr-muted); }

.tpl-form-trust {
  margin-top: 0.85rem;
  padding: 0.65rem 0.9rem;
  background: var(--clr-accent-lt);
  border: 1px solid #c7d7f8;
  border-radius: var(--radius);
}

.tpl-form-trust-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem; }

.tpl-form-trust-list li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-accent);
  padding-left: 1rem;
  position: relative;
}

.tpl-form-trust-list li::before { content: "\2713"; position: absolute; left: 0; font-weight: 700; }

.tpl-what-next-list { margin: 0.5rem 0 0; padding-left: 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; }
.tpl-what-next-list li { font-size: 0.9rem; color: var(--clr-muted); line-height: 1.5; }
.tpl-what-next-list li::marker { color: var(--clr-accent); font-weight: 700; }

.tpl-context-meta { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.75rem; }

.tpl-context-meta-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid #c7d7f8;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-accent);
}

.tpl-related-panel { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 0.9rem 1.1rem; margin-bottom: 1.25rem; }
.tpl-related-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-muted); margin: 0 0 0.6rem; }
.tpl-related-list  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.tpl-related-item  { display: flex; }

.tpl-related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.tpl-related-link:hover { border-color: var(--clr-accent); background: var(--clr-accent-lt); text-decoration: none; }
.tpl-related-name { font-size: 0.88rem; font-weight: 600; color: var(--clr-text); }
.tpl-related-cat  { font-size: 0.75rem; color: var(--clr-muted); white-space: nowrap; }

.tpl-discovery-prep {
  background: var(--clr-accent-lt);
  border: 1px solid #c7d7f8;
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius);
  padding: 1rem 1.25rem 1.1rem;
  margin-bottom: 1.5rem;
}

.tpl-discovery-prep-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-accent); margin: 0 0 0.4rem; }
.tpl-discovery-prep-intro { font-size: 0.88rem; font-weight: 600; color: var(--clr-text); margin: 0 0 0.5rem; }
.tpl-discovery-prep-list  { list-style: none; padding: 0; margin: 0 0 0.6rem; display: flex; flex-direction: column; gap: 0.3rem; }

.tpl-discovery-prep-list li {
  font-size: 0.875rem;
  color: var(--clr-text);
  padding-left: 1.4rem;
  position: relative;
}

.tpl-discovery-prep-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--clr-accent); font-weight: 700; }
.tpl-discovery-prep-note { font-size: 0.78rem; color: var(--clr-muted); margin: 0; font-style: italic; }

/* ── DS.1.0 — Lucide Icon System ── */
.icon-16 { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.icon-20 { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.icon-24 { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }
.icon-32 { width: 32px; height: 32px; display: inline-block; vertical-align: middle; }

.card-icon svg,
.pricing-icon svg,
.enhancement-icon svg,
.icon-box svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ig-intro-icon svg  { width: 20px; height: 20px; display: inline-block; vertical-align: middle; color: var(--clr-accent); }
.ig-playbook-icon svg { width: 28px; height: 28px; display: block; color: var(--clr-accent); margin-bottom: 0.2rem; }
.feature-card-icon svg { width: 28px; height: 28px; display: block; }

svg[aria-hidden="true"] { pointer-events: none; }

/* ── Accessibility Utilities ── */
.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;
}

/* ── Typography Utilities ── */
.lead       { font-size: 1.15rem; line-height: 1.7; color: var(--clr-text); }
.text-small { font-size: 0.88rem; }
.text-micro { font-size: 0.82rem; }
.text-muted   { color: var(--clr-muted); }
.text-default { color: var(--clr-text); }
.text-accent  { color: var(--clr-accent); }
.text-center  { text-align: center; }

/* ── Spacing Utilities ── */
.mt-xs { margin-top: 0.5rem; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.25rem; }
.mt-lg { margin-top: 1.75rem; }
.mt-xl { margin-top: 2.5rem; }
.mb-xs { margin-bottom: 0.5rem; }
.mb-sm { margin-bottom: 0.75rem; }
.mb-md { margin-bottom: 1.25rem; }
.mb-lg { margin-bottom: 1.75rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-inner         { grid-template-columns: 1fr 1fr; }
  .article-wrap         { grid-template-columns: 1fr; }
  .article-sidebar      { order: -1; }
  .svc-pillar-overview  { grid-template-columns: 1fr; gap: 1rem; }
  .enhancements-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-hub-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links,
  .nav-actions .btn { display: none; }

  .nav-toggle { display: block; }

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    padding: 1rem 1.25rem;
    gap: 1rem;
    z-index: 99;
  }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .contact-wrap { grid-template-columns: 1fr; }
  .hosting-layout { grid-template-columns: 1fr; }

  .nav-has-dropdown { width: 100%; }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--clr-accent-lt);
    border-radius: 0;
    padding: 0.25rem 0 0.25rem 0.75rem;
    margin-top: 0.25rem;
  }

  .nav-dropdown a { font-size: 0.85rem; padding: 0.4rem 0.5rem; }

  .nav-group-label { padding: 0.35rem 0.5rem 0.1rem; font-size: 0.65rem; }

  .svc-highlights { flex-direction: column; gap: 0.6rem; }
}

@media (max-width: 640px) {
  .two-col-cards  { grid-template-columns: 1fr; }
  .feature-cards  { grid-template-columns: 1fr; }
  .enhancement-callout { flex-direction: column; align-items: flex-start; }
  .founder-quote-wrap blockquote { margin: 0 auto; text-align: center; }
  .founder-quote-signature { align-items: center; }
  .pill-group--grid { grid-template-columns: repeat(2, auto); }
  .cta-trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .process-step::before { display: none; }
  .pricing-card.enterprise { flex-direction: column; }
}

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

@media (max-width: 540px) {
  .founder-profile { grid-template-columns: 1fr; }
  .founder-photo   { width: 90px; height: 90px; }
}

@media (max-width: 480px) {
  section { padding: 2rem 0; }
  .hero   { padding: 3.5rem 0 3rem; }
  .starter-inner { grid-template-columns: 1fr; }
}

/* ── Samples grid — prevent lone orphan on wide screens ── */
@media (min-width: 1000px) {
  .sample-grid { grid-template-columns: repeat(3, 1fr); }
  .sample-card:nth-child(4) { grid-column: 1 / 2; }
  .sample-card:nth-child(5) { grid-column: 2 / 3; }
}

/* ── DL.9.0 — Template Industry Filter Banner ── */
.tf-banner {
  background: var(--clr-accent-lt);
  border-top: 1px solid #c5d8f0;
  border-bottom: 1px solid #c5d8f0;
  padding: 0.75rem 0;
}

.tf-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.tf-banner-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tf-banner-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-muted);
}

.tf-banner-industry {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-accent);
}

.tf-banner-cat {
  font-size: 0.82rem;
  color: var(--clr-muted);
}

.tf-banner-clear {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--clr-accent);
  border-radius: var(--radius);
  background: transparent;
  color: var(--clr-accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.tf-banner-clear:hover {
  background: var(--clr-accent);
  color: #fff;
}

@media (max-width: 480px) {
  .tf-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   SERVICES.1.2  Service section grid balance
   ============================================================ */

/* Two cards: fixed 2-column grid, fills intentionally */
.svc-overview-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .svc-overview-grid--two {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TEMPLATES.2.3 — Delivery Process Visualization
   ============================================================ */

.dlv-steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line running behind the step numbers */
.dlv-steps::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: calc(10% + 1rem);
  right: calc(10% + 1rem);
  height: 2px;
  background: var(--clr-border, #e2e2dc);
  z-index: 0;
}

.dlv-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
}

.dlv-step-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d2d52, #065595);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(6, 85, 149, 0.25);
}

.dlv-step-num span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.dlv-step-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--clr-text);
}

.dlv-step-body p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.55;
}

/* Timeline callout */
.dlv-timeline {
  margin-top: 2rem;
  background: var(--clr-accent-lt);
  border: 1px solid #c5d8f0;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  max-width: 560px;
}

.dlv-timeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent);
  margin: 0 0 0.35rem;
}

.dlv-timeline p:last-child {
  font-size: 0.9rem;
  color: var(--clr-text);
  margin: 0;
  line-height: 1.6;
}

/* Tablet: 3 + 2 wrap */
@media (max-width: 900px) {
  .dlv-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 0;
  }
  .dlv-steps::before {
    display: none;
  }
}

/* Mobile: horizontal card with number left, text right */
@media (max-width: 560px) {
  .dlv-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .dlv-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0 0 1.5rem;
    gap: 1rem;
  }
  .dlv-step-num {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .dlv-step-num span {
    font-size: 1rem;
  }
  .dlv-timeline {
    max-width: 100%;
  }
}

/* ============================================================
   TEMPLATES.2.4 — Customization Section Visual Refresh
   ============================================================ */

.cst-section {
  background: var(--clr-accent-lt);
  border-top: 1px solid #d0e4f7;
  border-bottom: 1px solid #d0e4f7;
}

.cst-pills {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cst-pills li {
  background: #fff;
  color: var(--clr-accent);
  border: 1px solid #b8d4ef;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.cst-note {
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: var(--clr-muted);
}

@media (max-width: 480px) {
  .cst-pills li {
    white-space: normal;
  }
}


/* ============================================================
   PRICING.UI.1 — Pricing Card Depth & Visual Hierarchy
   MWD.PRICING.UI.1
   ============================================================ */

/* Touch devices — suppress transform, keep shadow/border transitions */
@media (hover: none) {
  .pricing-card:hover,
  .pricing-hub-card:hover,
  .enhancement-card:hover {
    transform: none;
  }
}

/* Tablet / mobile — no layout shift from hover lift */
@media (max-width: 768px) {
  .pricing-card,
  .pricing-hub-card,
  .enhancement-card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .pricing-card:hover,
  .pricing-hub-card:hover,
  .enhancement-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(6,85,149,0.07);
  }
}

/* ============================================================
   SERVICES.UI.1 — Services Page Depth & Visual Hierarchy
   ============================================================ */

/* Section alternation — restrained rhythm, no visible striping */
#websites,
#digital-solutions {
  background: #ffffff;
}

.section-alt {
  background: #f7fafc;
}

/* Suppress lift on touch devices and narrow viewports */
@media (hover: none) {
  .svc-overview-card:hover,
  .svc-pillar-card:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .svc-overview-card,
  .svc-pillar-card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .svc-overview-card:hover,
  .svc-pillar-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(6,85,149,0.07);
  }
}

/* ── DESIGNIDEAS.UI.1 ─────────────────────────────────────────────────────── */

/* 2×2 informational overview grid */
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Informational card — brand depth, no hover lift */
.info-card {
  background:
    radial-gradient(circle at top left, rgba(6,85,149,0.06), transparent 60%),
    #ffffff;
  border: 1px solid rgba(6,85,149,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.info-card .section-label {
  display: block;
  margin-bottom: 0.4rem;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--clr-text);
}

.info-card p {
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card ul {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.25rem;
  line-height: 1.9;
}

/* Static card variant — suppresses hover lift for informational cards */
.card--static {
  transition: none;
}

.card--static:hover {
  transform: none;
  border-color: rgba(6,85,149,0.12);
  box-shadow: none;
}

/* Hosting card grid — two equal columns */
.card-grid--hosting {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid--hosting {
    grid-template-columns: 1fr;
  }
}
/* ── /DESIGNIDEAS.UI.1 ────────────────────────────────────────────────────── */

/* ── DESIGNIDEAS.UI.2 ─────────────────────────────────────────────────────── */

/* Overview section — white background, slightly tighter than section-alt */
.diw-overview {
  padding: 3rem 0 2.5rem;
}

/* Tighten overview card internals so they read as intro, not centrepiece */
.diw-overview .info-card {
  padding: 1.35rem 1.5rem;
}

.diw-overview .info-card p {
  margin-bottom: 0.55rem;
  line-height: 1.65;
}

.diw-overview .info-card ul {
  margin: 0.35rem 0 0.55rem;
  line-height: 1.75;
}

/* Process section — elevated as primary educational anchor */
.diw-process {
  padding: 3.5rem 0;
}

/* What's Included — white background, full-width card grid */
.diw-included {
  padding: 3rem 0;
}

/* 4-column auto-fill grid for 8 inclusion items */
.incl-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.incl-card-grid .info-card {
  padding: 1.1rem 1.25rem;
}

.incl-card-grid .info-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.incl-card-grid .info-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 0;
  color: var(--clr-muted);
}

/* Business Considerations section */
.diw-biz {
  padding: 3rem 0;
}

/* 2×2 grid — first four cards fill two columns, pricing card spans full width */
.biz-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Pricing card spans both columns */
.biz-card--wide {
  grid-column: 1 / -1;
}

/* Pricing list — two-column layout inside the wide card */
.biz-pricing-list {
  columns: 2;
  column-gap: 2rem;
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.25rem;
  line-height: 1.9;
}

/* Hosting sub-layout inside the hosting card */
.biz-hosting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0.75rem 0 1rem;
  padding: 1rem;
  background: rgba(6,85,149,0.03);
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(6,85,149,0.08);
}

.biz-hosting-option strong {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-text);
  margin-bottom: 0.3rem;
}

.biz-hosting-option p {
  font-size: 0.875rem;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 1024px) {
  .incl-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .biz-card--wide {
    grid-column: auto;
  }

  .biz-pricing-list {
    columns: 1;
  }

  .biz-hosting-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .incl-card-grid {
    grid-template-columns: 1fr;
  }
}
/* ── /DESIGNIDEAS.UI.2 ────────────────────────────────────────────────────── */

/* ── DESIGNIDEAS.UI.3 ─────────────────────────────────────────────────────── */

/* Process section — white background with accent border frame.
   Breaks the grey/grey/grey rhythm and signals a distinct milestone. */
.diw-process {
  background: #ffffff;
  border-top: 1px solid rgba(6,85,149,0.10);
  border-bottom: 1px solid rgba(6,85,149,0.10);
  padding: 3.75rem 0;
}

/* Hosting option sub-cards — full brand-depth treatment to match info-card weight */
.biz-hosting-option {
  background:
    radial-gradient(circle at top left, rgba(6,85,149,0.06), transparent 60%),
    #ffffff;
  border: 1px solid rgba(6,85,149,0.12);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.biz-hosting-option strong {
  font-size: 0.925rem;
}

/* Hosting grid — remove the faint inset panel now that options carry their own depth */
.biz-hosting-grid {
  background: transparent;
  border: none;
  padding: 0;
  gap: 0.85rem;
  margin: 0.65rem 0 0.9rem;
}

/* ── /DESIGNIDEAS.UI.3 ────────────────────────────────────────────────────── */

