@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Variable.ttf") format("truetype-variations"), url("assets/fonts/Sora-Variable.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/CormorantGaramond-Variable.ttf") format("truetype-variations"), url("assets/fonts/CormorantGaramond-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/CormorantGaramond-Italic-Variable.ttf") format("truetype-variations"), url("assets/fonts/CormorantGaramond-Italic-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --forest: #0F1F1A;
  --deep-green: #1B2E26;
  --sage: #A7B29E;
  --champagne: #D8CCAA;
  --light-sand: #EDE8DD;
  --gold: #C9A24A;
  --gold-light: #E6C878;

  --tint: var(--champagne);
  --tint-soft: rgba(216,204,170,0.25);
  --dark-band: var(--forest);

  --ink: var(--deep-green);
  --ink-soft: #5C6A61;
  --bg: var(--light-sand);
  --bg-soft: #F5F2E9;
  --border: #DCD5C4;
  --radius: 14px;
  --max-width: 1140px;

  --font-sans: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.15; margin: 0; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237,232,221,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo { display: flex; align-items: center; }
.logo img { display: block; }

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

.menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(27,46,38,0.25);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.menu-toggle:hover { border-color: var(--gold); }
.menu-toggle.open { background: var(--gold); border-color: var(--gold); }
.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle.open span { background: var(--deep-green); }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mega menu */
.mega-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: var(--deep-green);
  transition: max-height 0.32s ease, opacity 0.28s ease;
}
.mega-menu.open { max-height: 720px; opacity: 1; }

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 28px;
  padding: 26px 24px 32px;
}

.mega-label {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.mega-item, .mega-cta {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.mega-menu.open .mega-item, .mega-menu.open .mega-cta { opacity: 1; transform: translateY(0); }
.mega-menu.open .mega-col:nth-child(1) .mega-item:nth-child(2) { transition-delay: 0.04s; }
.mega-menu.open .mega-col:nth-child(1) .mega-item:nth-child(3) { transition-delay: 0.08s; }
.mega-menu.open .mega-col:nth-child(1) .mega-item:nth-child(4) { transition-delay: 0.12s; }
.mega-menu.open .mega-col:nth-child(2) .mega-item:nth-child(2) { transition-delay: 0.04s; }
.mega-menu.open .mega-col:nth-child(2) .mega-item:nth-child(3) { transition-delay: 0.08s; }
.mega-menu.open .mega-col:nth-child(2) .mega-item:nth-child(4) { transition-delay: 0.12s; }
.mega-menu.open .mega-cta { transition-delay: 0.16s; }

.mega-item {
  display: block;
  padding: 0 0 14px;
}
.mega-item-title {
  display: block;
  color: var(--light-sand);
  font-size: 14.5px;
  font-weight: 500;
  margin: 0 0 3px;
}
.mega-item:hover .mega-item-title { color: var(--gold-light); }
.mega-item-sub {
  display: block;
  color: var(--sage);
  font-size: 12.5px;
}
.mega-badge {
  display: inline-block;
  background: rgba(201,162,74,0.2);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.mega-cta {
  background: var(--forest);
  border-radius: 10px;
  padding: 18px;
  align-self: start;
}
.mega-cta-title { color: var(--light-sand); font-size: 14.5px; font-weight: 500; margin: 0 0 6px; }
.mega-cta-sub { color: var(--sage); font-size: 12.5px; line-height: 1.5; margin: 0 0 14px; }
.mega-cta-link { color: var(--gold); font-size: 13px; font-weight: 500; }
.mega-cta-link:hover { color: var(--gold-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--deep-green);
  color: var(--light-sand);
}
.btn-primary:hover { background: var(--forest); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--deep-green); }

.btn-gold {
  background: var(--gold);
  color: var(--forest);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* Hero */
.hero {
  padding: 100px 0 70px;
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--tint) 0%, transparent 70%);
}

.badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--deep-green);
  background: var(--tint);
  padding: 6px 14px;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 780px;
  margin: 0 auto;
}

.hero .accent { color: var(--gold); }

.hero-report-link {
  margin-top: 20px;
  font-size: 0.88rem;
}

.hero-report-link a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.hero-report-link a:hover { color: var(--deep-green); }

.hero-sub {
  max-width: 600px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* Stats bar */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-grid, .why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat, .stat-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--tint-soft);
  border-radius: var(--radius);
  padding: 24px 16px;
}

.stat-num {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--deep-green);
}

.why-stats .stat-num { color: var(--gold); }

.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.why-stats .stat-label { color: var(--sage); }

/* Section headings */
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.eyebrow-inverse { color: var(--gold); }

.services, .testimonials { padding: 90px 0; }

.services h2, .why h2, .testimonials h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  max-width: 620px;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin-top: 16px;
  font-size: 1.05rem;
}

.section-sub-inverse { color: var(--sage); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  background: var(--bg-soft);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(15, 31, 26, 0.08);
  transform: translateY(-2px);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--deep-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Why section - dark brand band */
.why {
  padding: 90px 0;
  background: var(--dark-band);
  color: var(--light-sand);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.why h2 { color: var(--light-sand); }

.why-list {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li {
  position: relative;
  padding-left: 28px;
  color: var(--sage);
  font-size: 0.98rem;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

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

/* Testimonials */
.testimonials { text-align: center; }
.testimonials h2 { margin: 0 auto; }

.testimonial-carousel {
  margin-top: 48px;
  text-align: left;
}

.testimonial-viewport { overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 4px;
}

.testimonial-slide .testimonial { max-width: 640px; margin: 0 auto; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}

.carousel-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.carousel-arrow:hover { border-color: var(--deep-green); color: var(--deep-green); }

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.testimonial {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--bg-soft);
}

.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--deep-green);
  line-height: 1.4;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--deep-green);
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
}

.testimonial .role {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* CTA */
.cta {
  padding: 90px 0;
  text-align: center;
  background: var(--deep-green);
  color: var(--light-sand);
}

.cta h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--light-sand);
}

.cta p {
  max-width: 520px;
  margin: 18px auto 32px;
  color: var(--sage);
}

/* Legal page */
.legal { padding: 70px 0 100px; }

.legal-content { max-width: 720px; }

.legal-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-top: 6px;
}

.legal-updated {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-top: 10px;
}

.legal-notice {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 28px 0 44px;
}

.legal-notice p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 30px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.legal-content a { color: var(--deep-green); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--gold); }

.legal-back { margin-top: 56px; }
.legal-back a { text-decoration: none; font-weight: 600; }

/* Lead / audit form pages */
.form-page { padding: 70px 0 100px; }

.form-page-content { max-width: 640px; margin: 0 auto; }

.form-page-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-top: 6px;
}

.form-page-sub {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-top: 14px;
  line-height: 1.6;
}

.lead-form { margin-top: 40px; }

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

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-field .optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-submit-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.form-error {
  display: none;
  color: #A5463A;
  font-size: 0.85rem;
  margin-top: 14px;
}

/* Post-submit confirmation state */
.form-success {
  display: none;
  text-align: center;
  padding: 50px 30px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-success.is-visible { display: block; }
.lead-form.is-hidden { display: none; }

.form-success h2 { font-size: 1.5rem; }

.form-success p {
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.form-success .btn { margin-top: 26px; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  padding: 40px 0 28px;
  background: var(--forest);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 28px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(167,178,158,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease;
}

.footer-socials a:hover { border-color: var(--gold); }

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: var(--sage);
  stroke: var(--sage);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a[aria-label="X"] svg { fill: none; }
.footer-socials a[aria-label="LinkedIn"] svg,
.footer-socials a[aria-label="Facebook"] svg { stroke: none; }
.footer-socials a[aria-label="Instagram"] svg { fill: none; }

.footer-socials a:hover svg { fill: var(--gold); stroke: var(--gold); }

.footer-certs {
  border-top: 1px solid rgba(167,178,158,0.18);
  padding: 24px 0;
}

.footer-certs-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 16px;
}

.footer-certs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-certs-row img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.footer-certs-row img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .footer-certs-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px 10px;
  }

  .footer-certs-row img {
    height: auto;
    width: 100%;
    max-width: 52px;
    justify-self: center;
  }
}

.footer-disclaimer {
  border-top: 1px solid rgba(167,178,158,0.18);
  padding: 22px 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #6E7A72;
  max-width: 760px;
}

.footer-disclaimer a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-disclaimer a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
  font-size: 0.85rem;
  color: var(--sage);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links a:hover { color: var(--gold); }

.copyright { color: #6E7A72; }
.copyright a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.copyright a:hover { color: var(--gold); }

/* Ecommerce page theme - swaps the warm champagne tint for the cooler
   sage tone and deepens the dark band, so the page reads distinctly
   from the lead-gen site while staying inside the brand palette. */
.ecom-theme {
  --tint: var(--sage);
  --tint-soft: rgba(167,178,158,0.3);
  --dark-band: var(--deep-green);
}

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

@media (max-width: 720px) {
  .stats-grid, .why-stats { grid-template-columns: repeat(2, 1fr); }
  .mega-menu-grid { grid-template-columns: 1fr; padding: 22px 24px 26px; gap: 22px; }
}

@media (max-width: 420px) {
  .header-inner { height: 68px; }
  .btn-sm { padding: 8px 12px; font-size: 0.78rem; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid, .why-stats { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================
   Sample Report dashboard page
   ============================ */

.report-hero {
  padding: 70px 0 40px;
  text-align: center;
  background: radial-gradient(60% 50% at 50% 0%, var(--tint) 0%, transparent 70%);
}

.report-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 720px;
  margin: 0 auto;
}

.report-hero-sub {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.report-disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px dashed var(--gold);
  background: rgba(201,162,74,0.08);
  color: var(--deep-green);
  font-size: 0.8rem;
  font-weight: 600;
}

.report-section { padding: 30px 0 90px; }

/* Toolbar */
.report-toolbar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(15,31,26,0.05);
}

.report-client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-client-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-sand);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.report-client-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.report-client-sub {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.report-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.report-filter-btn {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.report-filter-btn:hover { border-color: var(--gold); }

.report-filter-btn.is-active {
  background: var(--deep-green);
  color: var(--light-sand);
  border-color: var(--deep-green);
}

.report-updated {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

/* KPI grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.kpi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.kpi-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.kpi-card.kpi-highlight {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,162,74,0.07), rgba(201,162,74,0.02));
}

.kpi-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.kpi-tag {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: var(--gold);
  background: rgba(201,162,74,0.14);
  padding: 1px 7px;
  border-radius: 999px;
  vertical-align: middle;
}

.kpi-value {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  color: var(--deep-green);
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
}

.kpi-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-top: 10px;
  padding: 2px 9px;
  border-radius: 999px;
}

.kpi-trend.good { color: #2F6F4E; background: rgba(47,111,78,0.1); }
.kpi-trend.bad { color: #A5463A; background: rgba(165,70,58,0.1); }

.kpi-caption {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.kpi-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
  margin-top: 14px;
}

.kpi-spark-bar {
  flex: 1;
  height: 100%;
  background: var(--sage);
  opacity: 0.55;
  border-radius: 2px 2px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.kpi-spark-bar:last-child {
  background: var(--gold);
  opacity: 1;
}

/* Trend chart */
.trend-card {
  margin-top: 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
}

.trend-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.trend-card-head h2 {
  font-size: 1.15rem;
}

.trend-card-sub {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.trend-chart {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 220px;
  margin-top: 30px;
  padding: 0 4px;
}

.trend-bar-col {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.trend-bar-value {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
  white-space: nowrap;
}

.trend-bar-value.is-visible { opacity: 1; }

.trend-bar-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.trend-bar {
  width: 100%;
  max-width: 52px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 6px 6px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.trend-bar-label {
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin-top: 10px;
  white-space: nowrap;
}

.report-note {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
}

.report-note a {
  color: var(--deep-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .kpi-card, .kpi-spark-bar, .trend-bar, .trend-bar-value {
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .trend-chart { gap: 8px; }
  .trend-bar-value { font-size: 0.64rem; }
  .trend-bar-label { font-size: 0.66rem; }
}

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

/* ============================
   Site-wide additions
   ============================ */

.breadcrumbs {
  padding: 16px 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.breadcrumbs a {
  color: var(--deep-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumbs .sep {
  margin: 0 6px;
  color: var(--border);
}

.breadcrumbs .current {
  color: var(--ink-soft);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--deep-green);
  padding: 10px 16px;
  box-shadow: 0 -6px 18px rgba(15,31,26,0.18);
}

.sticky-cta a {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .sticky-cta { display: block; }
  .has-sticky-cta { padding-bottom: 74px; }
}

/* Response-time trust line */
.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

.trust-line .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* FAQ accordion */
.faq { padding: 90px 0; }

.faq-list {
  max-width: 760px;
  margin: 32px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 4px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 640px;
}

/* Why Likewise — USP spotlight */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.usp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.usp-card:hover, .usp-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.usp-card svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp-card p.usp-title {
  margin: 14px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.usp-card p.usp-sub {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.usp-spotlight {
  display: none;
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: 200px 1fr;
}

.usp-nav {
  background: var(--bg-soft);
  padding: 14px;
}

.usp-nav-item {
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 4px;
  transition: background 0.15s ease;
}

.usp-nav-item:hover { background: var(--tint-soft); }
.usp-nav-item.is-active { background: var(--tint); font-weight: 700; }

.usp-detail { padding: 34px 32px; }

.usp-detail svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp-detail h3 {
  margin: 16px 0 0;
  font-size: 1.3rem;
}

.usp-detail p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 560px;
}

.usp-back {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  display: inline-block;
}

@media (max-width: 640px) {
  .usp-grid { grid-template-columns: 1fr; }
  .usp-spotlight { grid-template-columns: 1fr; }
  .usp-nav { display: flex; overflow-x: auto; gap: 6px; }
  .usp-nav-item { white-space: nowrap; margin-bottom: 0; }
}

/* Pricing page */
.pricing-qualifier {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-top: 30px;
}

.pricing-qualifier p.q-label {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.q-pills { display: flex; gap: 8px; flex-wrap: wrap; }

.q-pill {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.q-pill:hover { border-color: var(--gold); }

.q-pill.is-active {
  background: var(--deep-green);
  color: var(--light-sand);
  border-color: var(--deep-green);
}

.pricing-logic-note {
  margin: 16px 0 0;
  font-size: 0.82rem;
  color: var(--gold);
  display: none;
}

.pricing-lock-note {
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.pricing-tiers {
  display: none;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-tier {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.pricing-tier .tier-badge {
  display: none;
  font-size: 0.72rem;
  font-weight: 700;
  color: #856212;
  background: rgba(201,162,74,0.18);
  padding: 3px 10px;
  border-radius: 999px;
  margin: 0 0 12px;
  width: fit-content;
}

.pricing-tier .tier-name { margin: 0; font-size: 1rem; font-weight: 700; color: var(--ink); }

.pricing-tier .tier-price {
  margin: 8px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-green);
}

.pricing-tier .tier-price span { font-size: 0.8rem; font-weight: 400; color: var(--ink-soft); }

.pricing-tier .tier-desc {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pricing-tier ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 2.1;
}

.pricing-tier ul li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}

@media (max-width: 760px) {
  .pricing-tiers { grid-template-columns: 1fr; }
}

/* Error / thank-you pages */
.status-page {
  padding: 120px 0 140px;
  text-align: center;
}

.status-page .status-code {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 6rem);
  color: var(--gold);
  line-height: 1;
}

.status-page h1 {
  margin-top: 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.status-page p {
  margin-top: 14px;
  color: var(--ink-soft);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.status-page .btn { margin-top: 30px; }

.status-page .status-links {
  margin-top: 18px;
  font-size: 0.88rem;
}

.status-page .status-links a {
  color: var(--deep-green);
  text-decoration: underline;
  margin: 0 8px;
}
