/* Code Loopy — design system v1 (code-loopy-design.md) */
:root {
  --cl-bg: #ffffff;
  --cl-bg-subtle: #f8fafc;
  --cl-bg-dark: #0b1220;
  --cl-surface: #ffffff;
  --cl-border: #e2e8f0;
  --cl-border-strong: #cbd5e1;
  --cl-text: #0f172a;
  --cl-text-muted: #475569;
  --cl-text-inverse: #f8fafc;
  --cl-primary: #0f766e;
  --cl-primary-hover: #0d9488;
  --cl-primary-light: #ccfbf1;
  /* Darker orange so white CTA text meets WCAG AA (≥4.5:1) */
  --cl-accent: #c2410c;
  --cl-accent-hover: #9a3412;
  --cl-success: #059669;
  --cl-warning: #d97706;
  --cl-error: #dc2626;
  --cl-radius-sm: 6px;
  --cl-radius: 12px;
  --cl-radius-lg: 20px;
  --cl-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --cl-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --cl-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --cl-container: 1200px;
  --cl-header-h: 64px;
  --cl-focus: 0 0 0 3px rgb(15 118 110 / 0.45);
  /* System stack — no render-blocking webfonts (Lighthouse FCP) */
  --cl-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn:hover {
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--cl-font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--cl-text);
  background: var(--cl-bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.dialog-open {
  overflow: hidden;
}

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

a {
  color: var(--cl-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--cl-primary-hover);
}

.section-dark a {
  color: #99f6e4;
}

.section-dark a.btn,
.section-dark .btn {
  color: #fff;
}

.section-dark a:hover {
  color: #ccfbf1;
}

.site-footer a {
  color: #94a3b8;
}

.site-footer a:hover {
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--cl-primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--cl-primary);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-radius: var(--cl-radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrapper {
  width: min(100% - 2.5rem, var(--cl-container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .wrapper {
    width: min(100% - 4rem, var(--cl-container));
  }
}

/* Typography */
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--cl-text);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--cl-text-muted);
  max-width: 42rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cl-primary);
  margin: 0 0 0.75rem;
}

.muted {
  color: var(--cl-text-muted);
  font-size: 0.9375rem;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .lead {
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--cl-header-h);
  /* Solid bg only — backdrop-filter creates a containing block that traps
     position:fixed mobile nav inside the ~64px header (menu appears clipped). */
  background: #ffffff;
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

body.nav-open .site-header {
  z-index: 1200;
}

.site-header.is-scrolled {
  border-bottom-color: var(--cl-border);
  box-shadow: var(--cl-shadow-sm);
}

/* Keep toggle above the open menu panel */
.site-header .menu-toggle {
  position: relative;
  z-index: 1101;
}

@media (min-width: 1024px) {
  :root {
    --cl-header-h: 72px;
  }
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--cl-header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .brand-logo {
    height: 44px;
  }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-sm);
  background: var(--cl-bg);
  cursor: pointer;
  padding: 0;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.menu-toggle-line {
  display: block;
  height: 2px;
  background: var(--cl-text);
  border-radius: 1px;
}

.main-nav {
  display: none;
}

.main-nav.is-open {
  display: flex;
  position: fixed;
  top: var(--cl-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem 6.5rem; /* room above bottom FABs */
  background: #ffffff;
  z-index: 1100; /* above FABs (900) and content */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.main-nav a {
  color: var(--cl-text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: var(--cl-radius-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--cl-primary-light);
  color: var(--cl-primary);
}

.main-nav .btn {
  margin-top: 0.75rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .main-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
  }
  .main-nav .btn {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  transform: scale(1.02);
  text-decoration: none;
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

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

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

.main-nav a.btn,
.main-nav a.btn-primary,
.main-nav a.btn-sm {
  color: #fff;
}

.main-nav a.btn:hover,
.main-nav a.btn-primary:hover {
  color: #fff;
}


.btn-secondary {
  background: var(--cl-primary-light);
  color: var(--cl-primary);
  border-color: transparent;
}

.btn-secondary:hover {
  background: #99f6e4;
  color: #0f766e;
}

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

.btn-outline:hover {
  background: var(--cl-primary-light);
  color: var(--cl-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--cl-primary);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--cl-primary-light);
  color: var(--cl-primary);
}

.btn-on-dark {
  background: var(--cl-accent);
  color: #fff;
  border-color: var(--cl-accent);
}

.btn-on-dark-outline {
  background: transparent;
  color: #fff;
  border-color: rgb(255 255 255 / 0.45);
}

.btn-on-dark-outline:hover {
  background: rgb(255 255 255 / 0.1);
  color: #fff;
}

.btn-sm {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}



@media (min-width: 1024px) {
  .section {
    padding: 5.5rem 0;
  }
}

.section-subtle {
  background: var(--cl-bg-subtle);
}

.section-dark {
  background: var(--cl-bg-dark);
  color: var(--cl-text-inverse);
}

.section-dark h2,
.section-dark h3 {
  color: var(--cl-text-inverse);
}

.section-dark .lead,
.section-dark .muted,
.section-dark p {
  color: #cbd5e1;
}

.section-teal {
  background: var(--cl-primary);
  color: #fff;
}

.section-teal h2,
.section-teal p {
  color: #fff;
}

/* Hero */
.hero {
  padding: 3rem 0 2.5rem;
}

@media (min-width: 1024px) {
  .hero {
    padding: 4.5rem 0 3rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.hero-visual {
  position: relative;
  border-radius: var(--cl-radius-lg);
  overflow: hidden;
  border: 1px solid var(--cl-border);
  box-shadow: var(--cl-shadow-lg);
  background: var(--cl-bg-subtle);
  aspect-ratio: 16 / 10;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--cl-border);
  font-size: 0.875rem;
  color: var(--cl-text-muted);
  font-weight: 500;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-strip svg {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--cl-primary);
  fill: currentColor;
  stroke: none;
}

/* Cards & grids */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid.three {
    gap: 2rem;
  }
  .card-grid.four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 1.25rem;
  box-shadow: var(--cl-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

@media (min-width: 768px) {
  .card {
    padding: 1.75rem;
  }
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cl-shadow);
}

.card h3 {
  margin-bottom: 0.5rem;
}

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

.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--cl-primary-light);
  color: var(--cl-primary);
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 1.75rem;
  box-shadow: var(--cl-shadow-sm);
  position: relative;
}

.price-card.is-featured {
  border: 2px solid var(--cl-primary);
  box-shadow: var(--cl-shadow-lg);
}



.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cl-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.25rem 0 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.25rem;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cl-text-muted);
}

.price-desc {
  color: var(--cl-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.price-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.price-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--cl-text);
  border-bottom: 1px solid var(--cl-border);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--cl-primary);
  box-shadow: inset 0 0 0 2px var(--cl-primary-light);
}

.price-card .btn {
  width: 100%;
}

.price-footnote {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--cl-text-muted);
}

/* Method / steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps.horizontal {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.step {
  counter-increment: step;
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 1.5rem;
  position: relative;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--cl-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.timeline {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

.timeline-item {
  border-left: 3px solid var(--cl-primary);
  padding: 0.25rem 0 0.25rem 1.25rem;
}

@media (min-width: 768px) {
  .timeline-item {
    border-left: none;
    border-top: 3px solid var(--cl-primary);
    padding: 1.25rem 0 0;
  }
}

.timeline-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cl-primary);
  margin-bottom: 0.35rem;
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--cl-primary-light);
  color: var(--cl-primary);
}

.badge-slate {
  background: #f1f5f9;
  color: var(--cl-text-muted);
}

/* Review section */
.review-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--cl-bg-subtle);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-lg);
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .review-band {
    grid-template-columns: 1fr auto;
    padding: 2rem 2.25rem;
  }
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.review-qr {
  width: 140px;
  height: 140px;
  border-radius: var(--cl-radius-sm);
  border: 1px solid var(--cl-border);
  background: #fff;
  padding: 0.5rem;
  margin: 0 auto;
}

.review-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* FAQ */
.faq-list {
  max-width: 42rem;
  margin: 0 auto;
  border-top: 1px solid var(--cl-border);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem 0;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--cl-text);
  cursor: pointer;
  min-height: 44px;
}

.faq-question:hover {
  color: var(--cl-primary);
}

.faq-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.15s ease;
  color: var(--cl-text-muted);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 1.15rem;
  color: var(--cl-text-muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--cl-border-strong);
  border-radius: var(--cl-radius-sm);
  background: #fff;
  color: var(--cl-text);
}

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

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

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--cl-error);
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-status.is-error {
  color: var(--cl-error);
}

.form-status.is-success {
  color: var(--cl-success);
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

/* Footer */
.site-footer {
  background: var(--cl-bg-dark);
  color: #cbd5e1;
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9375rem;
  max-width: 18rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.75rem;
  border-radius: 6px;
}

.site-footer h2 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f8fafc;
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #94a3b8; /* ≥4.5:1 on --cl-bg-dark */
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Floating review CTA */
/* —— Eve voice agent (site-wide) —— */
.eve-fab {
  position: fixed;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  left: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 56px;
  max-width: min(calc(100vw - 7.5rem), 20rem);
  padding: 0.35rem 1rem 0.35rem 0.35rem;
  background: #fff;
  color: var(--cl-text);
  border: 1px solid var(--cl-border);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--cl-shadow-lg);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.eve-fab:hover {
  border-color: var(--cl-primary);
  color: var(--cl-text);
  text-decoration: none;
  transform: scale(1.02);
  box-shadow: var(--cl-shadow);
}

.eve-fab:focus-visible {
  outline: 3px solid var(--cl-primary);
  outline-offset: 2px;
}

.eve-fab-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--cl-primary);
  flex-shrink: 0;
  background: var(--cl-primary-light);
}

.eve-fab-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  padding-right: 0.15rem;
}

.eve-fab-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cl-primary);
  line-height: 1.2;
}

.eve-fab-line {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cl-text);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eve-fab-phone {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cl-text-muted);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

/* live pulse ring on avatar */
.eve-fab-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.eve-fab-avatar-wrap picture {
  display: block;
  width: 48px;
  height: 48px;
}

.eve-fab-avatar-wrap::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cl-success);
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgb(5 150 105 / 0.45);
  animation: eve-pulse 2s ease-out infinite;
}

@keyframes eve-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(5 150 105 / 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgb(5 150 105 / 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgb(5 150 105 / 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .eve-fab-avatar-wrap::after {
    animation: none;
  }
}

@media (max-width: 480px) {
  .eve-fab {
    padding: 0.3rem 0.75rem 0.3rem 0.3rem;
    max-width: calc(100vw - 6.5rem);
  }
  .eve-fab-phone {
    display: none; /* number still in aria-label + tel href */
  }
  .eve-fab-line {
    font-size: 0.8125rem;
  }
}

/* Contact page Eve card */
.eve-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1.75rem;
  align-items: center;
  margin: 1.25rem 0 1.5rem;
  padding: 1.5rem 1.5rem 1.6rem;
  background: #fff;
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-lg);
  box-shadow: var(--cl-shadow);
}

.eve-card-photo-wrap {
  flex-shrink: 0;
  margin-inline: auto;
}

.eve-card-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 4px solid var(--cl-primary);
  box-shadow: 0 0 0 6px var(--cl-primary-light), var(--cl-shadow);
  display: block;
}

@media (min-width: 640px) {
  .eve-card-photo {
    width: 200px;
    height: 200px;
  }
  .eve-card-photo-wrap {
    margin-inline: 0;
  }
}

.eve-card-body {
  flex: 1;
  min-width: min(100%, 14rem);
}

.eve-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.eve-card-body > p {
  margin: 0 0 0.75rem;
  color: var(--cl-text-muted);
  font-size: 0.975rem;
}

.eve-card-number {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  margin: 0 0 1rem;
  color: var(--cl-text);
}

.eve-card .btn {
  width: auto;
  min-height: 48px;
}

.eve-card-phone {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.review-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.65rem 1.1rem;
  background: var(--cl-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--cl-shadow-lg);
}

.review-fab:hover {
  background: var(--cl-primary-hover);
  color: #fff;
}

.review-fab svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 480px) {
  .review-fab {
    padding: 0.65rem 0.9rem;
  }
}

/* Review dialog */
.review-dialog {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: rgb(15 23 42 / 0.55);
}

@media (min-width: 640px) {
  .review-dialog {
    align-items: center;
  }
}

.review-dialog[hidden] {
  display: none;
}

.review-dialog-panel {
  background: #fff;
  border-radius: var(--cl-radius-lg);
  width: min(100%, 440px);
  max-height: min(90vh, 640px);
  overflow-y: auto;
  padding: 1.75rem;
  box-shadow: var(--cl-shadow-lg);
  position: relative;
}

.review-dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--cl-bg-subtle);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--cl-text);
}

.review-dialog-panel .stars {
  margin-top: 0.25rem;
}

.review-dialog-panel .review-qr {
  margin: 1rem auto;
}

.review-compliance {
  font-size: 0.8125rem;
  color: var(--cl-text-muted);
  margin-top: 1rem;
}

/* Page hero (inner) */
.page-hero {
  padding: 2.5rem 0 1rem;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 3.5rem 0 1.5rem;
  }
}

.page-hero h1 {
  max-width: 20ch;
}

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  background: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 560px;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--cl-border);
}

.compare-table th {
  background: var(--cl-bg-subtle);
  font-weight: 600;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .check {
  color: var(--cl-success);
  font-weight: 700;
}

/* Reveal */
/* Visible by default for FCP; JS may enhance later */
.reveal-up {
  opacity: 1;
  transform: none;
}

/* 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;
}

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.solution-callout {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--cl-primary);
  color: #fff;
  border-radius: var(--cl-radius);
}

.solution-callout h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.solution-callout p {
  color: #ccfbf1;
  margin: 0;
  max-width: 48rem;
}

.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--cl-radius);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.9375rem;
}

/* Icon helpers for inline SVG */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
