/* ============================================================
   CLEARWATER SEO COMPANY — Design System
   Coastal sophistication, NOT beach kitsch
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Lora:wght@400;600;700&family=Manrope:wght@400;500;600;700&display=swap');

/* ---------- Skip Navigation (WCAG 2.4.1) ---------- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary, #0C4A6E);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-nav:focus {
  top: 0;
  outline: 3px solid var(--color-secondary, #E8723A);
  outline-offset: 2px;
}

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --color-primary: #0C4A6E;
  --color-secondary: #E8723A;
  --color-warm: #FBF7F2;
  --color-slate: #5B6B80;
  --color-dark: #0A1628;
  --color-light: #F8FAFC;
  --color-highlight: #06B6D4;
  --color-success: #10B981;
  --color-error: #EF4444;
  --color-border: #E2E8F0;

  /* Typography */
  --font-display: 'Lora', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Type Scale */
  --text-hero: clamp(2.5rem, 5vw, 4rem);
  --text-section: clamp(1.75rem, 3vw, 2.5rem);
  --text-sub: clamp(1.25rem, 2vw, 1.5rem);
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-caption: 0.875rem;
  --text-data: clamp(2rem, 4vw, 3.5rem);

  /* Layout */
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --max-width-narrow: 800px;
  --section-padding: clamp(4rem, 8vw, 8rem);
  --component-gap: clamp(1.5rem, 3vw, 3rem);
  --card-padding: clamp(1.5rem, 2vw, 2.5rem);

  /* Border Radius */
  --radius-card: 8px;
  --radius-btn: 6px;
  --radius-input: 4px;
  --radius-lg: 14px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(12, 74, 110, 0.08), 0 1px 2px rgba(12, 74, 110, 0.04);
  --shadow-card-hover: 0 8px 24px rgba(12, 74, 110, 0.12), 0 2px 8px rgba(12, 74, 110, 0.06);
  --shadow-elevated: 0 20px 60px rgba(12, 74, 110, 0.15);

  /* Transitions */
  --transition-fast: 250ms ease-out;
  --transition-base: 350ms ease-out;
  --transition-reveal: 600ms ease-out;

  /* Aliases used by industry & sub-pages */
  --gradient-hero: linear-gradient(135deg, #0C4A6E 0%, #0A3A5C 60%, #083148 100%);
  --font-heading: 'Lora', serif;
  --color-ice: #F0F9FF;
  --color-navy: #0A1628;

  /* Missing aliases (used by service/area/industry pages) */
  --color-accent: #10B981;          /* Sea green — checkmarks, success, highlights */
  --color-primary-dark: #083A56;    /* Darker primary — hover states */
  --color-muted: #6B7280;           /* Muted text — passes WCAG AA on white (4.83:1) */
  --radius-sm: 4px;                 /* Small border radius */
  --shadow-strong: 0 12px 36px rgba(12, 74, 110, 0.18), 0 4px 12px rgba(12, 74, 110, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--color-slate);
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-dark);
  line-height: 1.2;
}

h1 { font-size: var(--text-hero); font-weight: 700; line-height: 1.1; }
h2 { font-size: var(--text-section); font-weight: 600; }
h3 { font-size: var(--text-sub); font-weight: 600; font-family: var(--font-body); }

p + p { margin-top: 1rem; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.container--wide { max-width: var(--max-width-wide); }
.container--narrow { max-width: var(--max-width-narrow); }

.section {
  padding: var(--section-padding) 0;
}

.section--warm { background-color: var(--color-warm); }
.section--primary { background-color: var(--color-primary); color: #fff; }
.section--primary h2,
.section--primary h3,
.section--primary p { color: #fff; }
.section--primary .eyebrow { color: var(--color-highlight); }
.section--dark { background-color: var(--color-dark); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark p { color: #fff; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 4rem);
}

.section-header p {
  margin-top: 1rem;
  font-size: var(--text-body-lg);
  color: var(--color-slate);
}

.text-center { text-align: center; }
.text-data {
  font-family: var(--font-mono);
  font-size: var(--text-data);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.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;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1.2;
  min-height: 48px;
}

.btn--primary {
  background-color: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.btn--primary:hover {
  background-color: #d4612e;
  border-color: #d4612e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 114, 58, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

.btn--accent {
  background-color: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.btn--accent:hover {
  background-color: #d4612e;
  border-color: #d4612e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 114, 58, 0.35);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-caption);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.card--dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--color-secondary);
}
.card--dark h3, .card--dark p { color: #fff; }

.card--warm {
  background: var(--color-warm);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-card);
  background: rgba(6, 182, 212, 0.08);
  color: var(--color-highlight);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card__title {
  font-size: var(--text-sub);
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: var(--text-body);
  color: var(--color-slate);
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: var(--text-caption);
  color: var(--color-secondary);
  transition: gap var(--transition-fast);
}
.card__link:hover {
  gap: 0.6rem;
  color: var(--color-secondary);
}

/* ---------- Grid System ---------- */
.grid {
  display: grid;
  gap: var(--component-gap);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
  .grid--4, .grid--5, .grid--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4, .grid--5, .grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid--2, .grid--3, .grid--4, .grid--5, .grid--6 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-fast);
}

.nav--scrolled {
  box-shadow: 0 2px 16px rgba(12, 74, 110, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ---- Logo image (replaces icon + text) ---- */
.nav__logo {
  display: block;
  width: 180px;
  height: 52px;
  background: url('/images/clearwater-seo-company-logo.png') no-repeat left center;
  background-size: contain;
  font-size: 0; /* hides any inline text nodes without shifting background */
  flex-shrink: 0;
}

/* White logo for dark footer background */
.footer .nav__logo {
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

/* Hide the old icon & text spans — image is shown via background */
.nav__logo-icon,
.nav__logo-text {
  display: none !important;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__cta-mobile {
  display: none;
}

.nav__link {
  position: relative;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--color-slate);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  transition: all var(--transition-fast);
}

.nav__link:hover, .nav__link--active {
  color: var(--color-primary);
  background: rgba(12, 74, 110, 0.04);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

.nav__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-trigger svg,
.nav__dropdown.active .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevated);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.active .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--color-slate);
  border-radius: var(--radius-input);
  transition: all var(--transition-fast);
}

.nav__dropdown-item:hover {
  background: var(--color-warm);
  color: var(--color-primary);
}

/* Mobile Nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile overlay (standalone nav__overlay on index.html) ---- */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: #fff;
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.nav__overlay.active {
  display: flex;
}

.nav__overlay .nav__link {
  font-size: var(--text-body-lg);
  padding: 1rem;
}

/* ---- Responsive (mobile ≤768px) ---- */
@media (max-width: 768px) {
  /* On most pages, nav__links serves as BOTH desktop links and mobile overlay */
  .nav__links {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: #fff;
    z-index: 999;
    padding: 2rem;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
  }

  .nav__links.active {
    display: flex;
  }

  .nav__links .nav__link {
    font-size: var(--text-body-lg);
    padding: 1rem;
  }

  .nav__links .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }

  .nav__cta-mobile {
    display: inline-flex;
  }

  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}

.hero--home {
  background-color: var(--color-primary);
  color: #fff;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 74, 110, 0.8);
  z-index: 0;
}

.hero--home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,165.3C672,171,768,213,864,213.3C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero__content p {
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-caption);
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 0.35rem;
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}

/* ---------- Stats Band ---------- */
.stats-band {
  background-color: var(--color-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.stats-band__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stats-band__item {
  text-align: center;
  color: #fff;
}

.stats-band__value {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stats-band__label {
  font-size: var(--text-caption);
  opacity: 0.9;
  display: block;
  margin-top: 0.25rem;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer__brand {
  max-width: 280px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}

.footer__brand p {
  font-size: var(--text-caption);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: var(--text-caption);
  color: rgba(255,255,255,0.6);
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--color-secondary);
}

.footer__bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--text-caption);
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

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

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  padding: 1rem 0;
  font-size: var(--text-caption);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.breadcrumb__sep {
  color: var(--color-border);
  font-size: 0.75rem;
}

.breadcrumb__link {
  color: var(--color-slate);
}

.breadcrumb__current {
  color: var(--color-primary);
  font-weight: 600;
}

/* ---------- Chatbot ---------- */
.chatbot-toggle {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 114, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.chatbot-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 114, 58, 0.5);
}

.chatbot-toggle svg {
  width: 24px;
  height: 24px;
}

.chatbot-panel {
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 360px;
  height: 480px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.95);
  transition: all var(--transition-base);
  overflow: hidden;
}

.chatbot-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot__header {
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot__header-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.chatbot__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.chatbot__close:hover { opacity: 1; }

.chatbot__messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chatbot__msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: var(--text-caption);
  line-height: 1.5;
  animation: chatFadeIn 300ms ease-out;
}

@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chatbot__msg--bot {
  background: var(--color-warm);
  color: var(--color-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chatbot__msg--user {
  background: var(--color-secondary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
  flex-shrink: 0;
}

.chatbot__option-btn {
  padding: 0.5rem 0.875rem;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 36px;
}

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

@media (max-width: 480px) {
  .chatbot-panel {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .chatbot-toggle { bottom: 80px; right: 16px; }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

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

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Market Intelligence Widget ---------- */
.mi-widget {
  position: relative;
}

.mi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--component-gap);
}

.mi-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.mi-card:hover, .mi-card.active {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.mi-card.active {
  border-color: var(--color-primary);
  background: var(--color-warm);
}

.mi-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.mi-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.mi-panel {
  display: none;
  margin-top: var(--component-gap);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  animation: panelSlide 350ms ease-out;
}

.mi-panel.active { display: block; }

@keyframes panelSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.mi-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.mi-panel__title {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  font-weight: 600;
  color: var(--color-dark);
}

.mi-panel__opportunity {
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.mi-panel__opportunity--high {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.mi-panel__opportunity--medium {
  background: rgba(232, 114, 58, 0.1);
  color: var(--color-secondary);
}

.mi-terms {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mi-term {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.mi-term:last-child { border-bottom: none; }

.mi-term__keyword {
  font-weight: 600;
  color: var(--color-dark);
  font-size: var(--text-caption);
}

.mi-term__volume {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--color-slate);
}

.mi-term__density {
  width: 120px;
  flex-shrink: 0;
}

.mi-density-bar {
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}

.mi-density-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 800ms ease-out;
}

.mi-density-fill--low { background: var(--color-success); }
.mi-density-fill--med { background: var(--color-secondary); }
.mi-density-fill--high { background: var(--color-error); }

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

@media (max-width: 480px) {
  .mi-cards { grid-template-columns: repeat(2, 1fr); }
  .mi-term { flex-wrap: wrap; }
  .mi-term__density { width: 100%; }
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  z-index: 900;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}

.sticky-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body:has(.sticky-cta) { padding-bottom: 72px; }
  .chatbot-toggle { bottom: 80px; }
}

.page-contact .sticky-cta { display: none !important; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 10000;
  font-size: var(--text-caption);
  transform: translateY(100%);
  transition: transform var(--transition-base);
  flex-wrap: wrap;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text a {
  color: var(--color-highlight);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #fff;
  transition: all var(--transition-fast);
  min-height: 40px;
}

.cookie-banner__btn--accept {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.cookie-banner__btn:hover {
  opacity: 0.9;
}

/* ---------- Count-Up Animation ---------- */
.count-up {
  display: inline-block;
}

/* ---------- FAQ / Accordion ---------- */
.accordion__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion__item:hover {
  border-color: var(--color-secondary);
}

.accordion__trigger {
  width: 100%;
  background: #fff;
  border: none;
  padding: 1.25rem var(--card-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  min-height: 48px;
}

.accordion__trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-slate);
  transition: transform var(--transition-fast);
}

.accordion__item.open .accordion__trigger svg {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion__content-inner {
  padding: 0 var(--card-padding) 1.25rem;
  font-size: var(--text-body);
  color: var(--color-slate);
  line-height: 1.7;
}

/* ---------- Visual Breadcrumbs ---------- */
.breadcrumb {
  background: var(--color-bg-alt, #f8f9fa);
  padding: 0.625rem 0;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--color-primary, #1a73e8);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb__sep {
  margin: 0 0.4rem;
  color: var(--color-muted, #9e9e9e);
}

.breadcrumb span[aria-current] {
  color: var(--color-slate, #64748b);
}

/* ---------- Related Services ---------- */
.related-services { background: var(--color-bg-alt, #f8f9fa); }

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

.related-service-card {
  display: flex;
  flex-direction: column;
  padding: var(--card-padding, 1.5rem);
  background: #fff;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid var(--color-border, #e2e8f0);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-base, 0.2s ease), transform var(--transition-base, 0.2s ease);
}

.related-service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.related-service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-heading, #1e293b);
}

.related-service-card p {
  font-size: var(--text-body, 0.95rem);
  color: var(--color-slate, #64748b);
  line-height: 1.6;
  flex: 1;
}

.related-service-card__cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--color-primary, #1a73e8);
  font-size: 0.9rem;
}

/* Awards Banner */
.awards-banner {
  padding: 2.5rem 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.awards-banner img {
  max-width: 100%;
  width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================================================
   PRICING TABLES — Shared across service pages
   ============================================================ */
.pricing-section { padding: 5rem 0; }
.pricing-section--alt { background: var(--color-ice); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.pricing-card--featured {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-strong);
}
.pricing-card--featured::before {
  content: 'Best Value';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.pricing-card__price-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.pricing-card__price-period {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

.pricing-card__or {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0.25rem 0;
}

.pricing-card__onetime {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: 1.25rem;
}
.pricing-card__onetime strong {
  color: var(--color-navy);
  font-weight: 700;
}

.pricing-card__divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin: 1rem 0;
  border: none;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.pricing-card__features li {
  font-size: 0.88rem;
  color: var(--color-slate);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  /* Checkmark via clip-path */
}
.pricing-card__features li::after {
  content: '';
  position: absolute;
  left: 3px;
  top: calc(0.6rem + 4px);
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.pricing-card__features li strong {
  color: var(--color-navy);
  font-weight: 600;
}

.pricing-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.pricing-card__actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Pricing toggle (monthly vs one-time) */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.pricing-toggle__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-slate);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.pricing-toggle__label--active { color: var(--color-navy); }
.pricing-toggle__switch {
  width: 48px;
  height: 26px;
  background: var(--color-border);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast);
  border: none;
  padding: 0;
}
.pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.pricing-toggle__switch.active {
  background: var(--color-primary);
}
.pricing-toggle__switch.active::after {
  transform: translateX(22px);
}

/* ============================================================
   CONTENT WRITING PRICING — Word count selector & blog tables
   ============================================================ */
.blog-pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.blog-pricing-tab {
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-btn);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-slate);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.blog-pricing-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.blog-pricing-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.blog-pricing-panel { display: none; }
.blog-pricing-panel.active { display: block; }

/* ============================================================
   SVG ILLUSTRATIONS (inline)
   ============================================================ */
.svg-illustration {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
}

/* ============================================================
   PROCESS TIMELINE — Horizontal variant
   ============================================================ */
.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.process-step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}
.process-step__desc {
  font-size: 0.85rem;
  color: var(--color-slate);
  line-height: 1.6;
}

/* ============================================================
   DATA COMPARISON CHARTS (CSS-only bar charts)
   ============================================================ */
.bar-chart {
  max-width: 600px;
  margin: 2rem auto;
}
.bar-chart__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.bar-chart__label {
  width: 140px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: right;
  flex-shrink: 0;
}
.bar-chart__track {
  flex: 1;
  height: 28px;
  background: var(--color-ice);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.bar-chart__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease-out;
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.bar-chart__fill--primary { background: var(--color-primary); }
.bar-chart__fill--accent { background: var(--color-accent); }
.bar-chart__fill--secondary { background: var(--color-secondary); }
.bar-chart__fill--muted { background: var(--color-muted); }

/* ============================================================
   GET STARTED / PAYMENT LINK FORM PAGE
   ============================================================ */
.getstarted-hero {
  padding: 8rem 0 4.5rem;
  background: var(--gradient-hero);
  text-align: center;
}
.getstarted-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.getstarted-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto;
}

.getstarted-form-section {
  padding: 5rem 0;
}
.getstarted-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
}
.getstarted-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}
.getstarted-card p {
  font-size: 0.92rem;
  color: var(--color-slate);
  margin-bottom: 1.5rem;
}
.getstarted-card label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}
.getstarted-card input[type="email"],
.getstarted-card input[type="text"],
.getstarted-card select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  margin-bottom: 1rem;
}
.getstarted-card input:focus,
.getstarted-card select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(12,74,110,0.1);
}
.getstarted-card .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.getstarted-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}
.getstarted-trust svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ============================================================
   SERVICES INDEX PAGE
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-index-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  border-top: 4px solid var(--color-primary);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}
.service-index-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.service-index-card:nth-child(2) { border-top-color: var(--color-accent); }
.service-index-card:nth-child(3) { border-top-color: #e67e22; }
.service-index-card:nth-child(4) { border-top-color: #8e44ad; }
.service-index-card:nth-child(5) { border-top-color: var(--color-highlight); }

.service-index-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}
.service-index-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}
.service-index-card__desc {
  font-size: 0.92rem;
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}
.service-index-card__price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-index-card__link {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition-fast);
}
.service-index-card__link:hover { gap: 0.6rem; }

/* ============================================================
   LIVE CHAT ENHANCED
   ============================================================ */
.chatbot__typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.75rem 1rem;
  background: var(--color-ice);
  border-radius: 12px 12px 12px 4px;
  max-width: 80px;
  margin-bottom: 0.5rem;
}
.chatbot__typing-dot {
  width: 6px;
  height: 6px;
  background: var(--color-muted);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}
.chatbot__typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chatbot__typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .pricing-card:hover,
  .service-index-card:hover { transform: none; }
  .bar-chart__fill { transition: none; }
}

/* Print */
@media print {
  .nav, .footer, .chatbot-toggle, .chatbot-panel, .sticky-cta, .cookie-banner { display: none !important; }
  .section { padding: 2rem 0; }
  .hero { min-height: auto; padding: 2rem 0; }
}
