/* v0 design system — converted from .dc.html templates */

@keyframes v0-floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes v0-spin {
  to { transform: rotate(360deg); }
}

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

.v0-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

/* Hero H1 eyebrows removed — kept class for older markup, never shown */
.v0-eyebrow-pill,
.v0-hero .v0-eyebrow-pill,
.v0-section--hero .v0-eyebrow-pill,
.v0-section--hero-compact .v0-eyebrow-pill {
  display: none !important;
}

.v0-h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 14px;
}

.v0-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--v0-muted);
  margin: 0;
}

.v0-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.v0-section {
  padding: 88px 0;
}

.v0-section--hero { padding: calc(var(--nav-h) + 48px) 0 84px; }
.v0-section--compact { padding: 56px 0; }

.v0-bg-hero { background: var(--gradient-v0-hero); position: relative; overflow: hidden; }
.v0-bg-a { background: var(--gradient-v0-section-a); }
.v0-bg-b { background: var(--gradient-v0-section-b); }
.v0-bg-c { background: var(--gradient-v0-section-c); }
.v0-bg-white { background: #fff; }

/* Hero */
.v0-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.v0-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 20px;
}

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

.v0-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--v0-muted);
  max-width: 480px;
  margin: 0 0 30px;
}

.v0-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.v0-hero-url-cta {
  display: flex;
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--v0-line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(34, 38, 41, 0.1);
}

.v0-hero-url-cta input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--v0-text);
  background: #fff;
}

.v0-hero-url-cta input::placeholder {
  color: var(--v0-muted);
}

.v0-hero-url-cta button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  padding: 16px 22px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: background var(--transition);
}

.v0-hero-url-cta button:hover {
  background: var(--accent-hover);
  transform: none;
}

@media (max-width: 600px) {
  .v0-hero-url-cta {
    flex-direction: column;
    max-width: none;
  }

  .v0-hero-url-cta button {
    width: 100%;
    padding: 14px 18px;
  }
}

.v0-hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.v0-hero-stat-val {
  font-size: 1.75rem;
  font-weight: 800;
}

.v0-hero-stat-label {
  font-size: 0.8125rem;
  color: var(--v0-muted);
}

.v0-hero-visual {
  position: relative;
  overflow: hidden;
}

.v0-hero-visual-glow {
  position: absolute;
  inset: -6% -4% -10% 6%;
  background: radial-gradient(circle at 50% 40%, #ffd7e8, #f3e6ff);
  border-radius: 50%;
  filter: blur(4px);
}

.v0-hero-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--v0-line);
  box-shadow: var(--shadow-v0-card);
}

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

.v0-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 14px 30px rgba(80, 50, 160, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: v0-floaty 5s ease-in-out infinite;
}

.v0-float-card--top { top: 18px; right: -10px; }
.v0-float-card--bottom { bottom: 26px; left: -16px; animation-duration: 6s; }

.v0-float-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--v0-mint);
  font-size: 1rem;
  color: var(--accent);
}

.v0-float-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

.v0-float-label { font-size: 0.6875rem; color: var(--v0-muted); }
.v0-float-value { font-weight: 700; font-size: 0.9375rem; }

.v0-hero-badge-spin {
  position: absolute;
  top: 44%;
  left: -26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  animation: v0-spin 14s linear infinite;
}

.v0-hero-badge-spin svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

/* Trust bar — logo slider */
.v0-trust-bar {
  --v0-trust-bg: #5a5a5a;
  background: var(--v0-trust-bg);
  border-bottom: none;
  padding: 28px 0;
  overflow: hidden;
}

.v0-trust-slider {
  width: 100%;
}

.v0-trust-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.v0-trust-track-wrap::before,
.v0-trust-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.v0-trust-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--v0-trust-bg) 0%, transparent 100%);
}

.v0-trust-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--v0-trust-bg) 0%, transparent 100%);
}

.v0-trust-track {
  display: flex;
  width: max-content;
  animation: v0-trust-marquee 90s linear infinite;
}

.v0-trust-track:hover {
  animation-play-state: paused;
}

.v0-trust-track-group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 28px;
  flex-shrink: 0;
}

.v0-trust-track-group img {
  height: 36px;
  width: auto;
  opacity: 0.82;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.v0-trust-track-group img:hover {
  opacity: 1;
}

@keyframes v0-trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .v0-trust-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 32px;
  }

  .v0-trust-track-group[aria-hidden="true"] {
    display: none;
  }

  .v0-trust-track-group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px;
  }
}

/* Legacy trust bar markup (pre-slider) */
.v0-trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.v0-trust-label {
  display: none;
}

.v0-trust-logos {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-around;
}

.v0-trust-logos img {
  height: 36px;
  width: auto;
  opacity: 0.82;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.v0-trust-logos img:hover { opacity: 1; }

.v0-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 36px 48px;
}

.v0-sitemap-h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text-primary);
}

.v0-sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v0-sitemap-list li {
  margin-bottom: 8px;
}

.v0-sitemap-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}

.v0-sitemap-list a:hover {
  color: var(--accent);
}

/* About overlapping */
.v0-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.v0-about-photos {
  position: relative;
  min-height: 380px;
}

.v0-about-photo-main {
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--v0-line);
  box-shadow: var(--shadow-v0-card);
}

.v0-about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v0-about-photo-secondary {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 14px 30px rgba(80, 50, 160, 0.14);
}

.v0-about-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v0-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 480px;
  margin-bottom: 28px;
}

.v0-check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
  font-weight: 500;
}

.v0-check-item span:first-child {
  color: var(--accent);
  font-size: 1.125rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.v0-check-item span:first-child svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

/* Service cards grid */
.v0-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.v0-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v0-cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.v0-svc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--v0-line);
  box-shadow: var(--shadow-v0-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

a.v0-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(34, 38, 41, 0.1);
}

.v0-svc-card-head {
  padding: 26px 22px;
}

.v0-svc-card-head--lav { background: var(--v0-lav); }
.v0-svc-card-head--peach { background: var(--v0-peach); }
.v0-svc-card-head--mint { background: var(--v0-mint); }
.v0-svc-card-head--sky { background: var(--v0-sky); }

.v0-svc-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  color: var(--accent);
}

.v0-svc-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  display: block;
}

.v0-svc-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.v0-svc-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.v0-svc-card-body p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--v0-muted);
  margin: 0 0 18px;
  flex: 1;
}

.v0-link-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

/* Value proposition */
.v0-value-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 22px;
}

.v0-value-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--v0-line);
}

.v0-value-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.v0-value-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(25, 21, 51, 0.9), transparent);
  color: #fff;
}

.v0-value-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.v0-value-box {
  border-radius: 22px;
  padding: 30px;
}

.v0-value-box--soft { background: var(--v0-primary-soft); }
.v0-value-box--peach { background: var(--v0-peach); }

.v0-value-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.v0-value-box p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--v0-muted);
  margin: 0;
}

/* Benefits strip — interactive accordion */
.v0-benefits-strip {
  display: flex;
  gap: 14px;
  height: 380px;
}

.v0-benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--v0-line);
  flex: 1;
  min-width: 72px;
  transition: flex var(--transition-slow);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.v0-benefit-card.active { flex: 4; }

.v0-benefit-photo {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  z-index: 0;
  transform: none;
  transform-origin: center center;
  transition:
    inset var(--transition-slow),
    top var(--transition-slow),
    left var(--transition-slow),
    width var(--transition-slow),
    height var(--transition-slow),
    transform var(--transition-slow),
    border-radius var(--transition-slow),
    border-color var(--transition-slow),
    box-shadow var(--transition-slow);
  box-shadow: none;
}

.v0-benefit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.v0-benefit-card.active .v0-benefit-photo {
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  border-color: transparent;
  box-shadow: none;
  z-index: 0;
}

.v0-benefit-card.active .v0-benefit-photo img {
  transform: scale(1.02);
}

.v0-benefit-card.active .v0-benefit-bg {
  opacity: 0.35;
  mix-blend-mode: multiply;
  z-index: 1;
  transition: opacity var(--transition-slow);
}

.v0-benefit-bg {
  position: absolute;
  inset: 0;
  background-color: var(--benefit-color, var(--v0-lav));
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, var(--benefit-stripe, rgba(255, 255, 255, 0.14)) 10px, var(--benefit-stripe, rgba(255, 255, 255, 0.14)) 20px);
  z-index: 1;
  opacity: 0.28;
  mix-blend-mode: multiply;
  transition: opacity var(--transition-slow);
}

.v0-benefit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 17, 42, 0.92) 0%, rgba(20, 17, 42, 0.45) 42%, rgba(20, 17, 42, 0.18) 100%);
  z-index: 1;
  transition: background var(--transition-slow);
}

.v0-benefit-card.active .v0-benefit-overlay {
  background: linear-gradient(to top, rgba(20, 17, 42, 0.94) 0%, rgba(20, 17, 42, 0.55) 48%, rgba(20, 17, 42, 0.22) 100%);
}

.v0-benefit-vert {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.35s;
}

.v0-benefit-card.active .v0-benefit-vert { opacity: 0; }

.v0-benefit-tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 16px 18px 52px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8125rem;
  font-weight: 600;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.35s;
}

.v0-benefit-card.active .v0-benefit-tagline { opacity: 0; }

.v0-benefit-detail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  z-index: 2;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.v0-benefit-card.active .v0-benefit-detail {
  opacity: 1;
  transform: translateY(0);
}

.v0-benefit-detail h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 8px;
  color: #fff;
}

.v0-benefit-detail p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* Testimonials */
.v0-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.v0-review-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-v0-card);
}

.v0-review-photo {
  width: 96px;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--v0-lav);
}

.v0-review-photo img { width: 100%; height: 100%; object-fit: cover; }

.v0-stars { color: #f5b301; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }

.v0-review-quote {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--purple-700);
  margin: 0 0 16px;
}

.v0-review-name { font-weight: 700; font-size: 0.9375rem; }
.v0-review-role { font-size: 0.8125rem; color: var(--v0-muted); }

/* Blog cards */
.v0-post-card {
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-v0-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

a.v0-post-card:hover { transform: translateY(-4px); }

.v0-post-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--v0-lav);
}

.v0-post-card-image img { width: 100%; height: 100%; object-fit: cover; }

.v0-post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.v0-post-meta {
  display: flex;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--v0-muted);
  margin-bottom: 12px;
}

.v0-post-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
}

.v0-post-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--v0-muted);
  margin: 0 0 16px;
  flex: 1;
}

/* Contact split */
.v0-contact-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.v0-contact-info {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
}

.v0-contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.v0-contact-info > p {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0 0 28px;
}

.v0-contact-rows { display: flex; flex-direction: column; gap: 22px; }

.v0-contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.v0-contact-row-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
  color: currentColor;
}

.v0-contact-row-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.v0-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-v0-card);
}

.v0-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.v0-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  display: block;
  margin-bottom: 7px;
}

.v0-field input,
.v0-field select,
.v0-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--v0-line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.875rem;
  background: #f4f5f5;
}

.v0-field { margin-bottom: 16px; }

/* CTA banner */
.v0-cta-banner-wrap { padding: 0 0 80px; }

.v0-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-950);
  padding: 66px 40px;
  text-align: center;
  color: #fff;
}

.v0-cta-banner h2 {
  position: relative;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 14px;
  color: #fff;
}

.v0-cta-banner p {
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 28px;
}

.v0-cta-deco {
  position: absolute;
  width: 7.5rem;
  height: 7.5rem;
  opacity: 0.14;
  pointer-events: none;
  font-size: 0;
  color: currentColor;
}

.v0-cta-deco::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  /* Geometric diamond / rotated square — no emoji */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.85;
}

.v0-cta-deco--tr { top: -40px; right: -30px; }
.v0-cta-deco--bl { bottom: -50px; left: -20px; opacity: 0.1; }

.v0-cta-deco svg {
  width: 100%;
  height: 100%;
  display: none; /* prefer CSS geometric; SVG leftover hidden */
}

/* Service / industry page shared */
.sp-breadcrumb {
  font-size: 0.8125rem;
  color: var(--v0-muted);
  margin-bottom: 18px;
  font-weight: 500;
}

.sp-breadcrumb a { color: var(--v0-muted); }
.sp-breadcrumb .current { color: var(--accent); font-weight: 600; }

.v0-pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.v0-pain-grid--logic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  justify-content: stretch;
}

.v0-pain-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.v0-pain-grid--3 .v0-pain-card,
.v0-pain-grid--logic .v0-pain-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 0;
}

.v0-pain-grid--3 .v0-pain-card p,
.v0-pain-grid--logic .v0-pain-card p {
  flex: 1 1 auto;
}

.v0-pain-card {
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: var(--shadow-v0-card-sm);
}

.v0-pain-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--v0-peach);
  font-size: 1.1875rem;
  margin-bottom: 14px;
  color: var(--accent);
}

.v0-pain-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.v0-pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}

.v0-pain-card p {
  font-size: 0.84375rem;
  line-height: 1.55;
  color: var(--v0-muted);
  margin: 0;
}

.v0-deliverable {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--v0-line);
  box-shadow: var(--shadow-v0-card);
  overflow: hidden;
  padding-bottom: 24px;
}

.v0-deliverable-head { padding: 24px 22px 0; }

.v0-deliverable-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  font-size: 1.4375rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.v0-deliverable-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  display: block;
}

.v0-deliverable h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
}

.v0-deliverable p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--v0-muted);
  margin: 0;
  padding: 0 22px;
}

.v0-deliverable > ul,
.v0-deliverable > .v0-check-grid {
  margin-left: 22px;
  margin-right: 22px;
}

.v0-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.v0-process-card {
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow-v0-card-sm);
}

.v0-process-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--v0-primary-soft);
  line-height: 1;
  margin-bottom: 14px;
}

.v0-results-banner {
  background: var(--ink-950);
  border-radius: var(--radius-lg);
  padding: 54px 40px;
  color: #fff;
}

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

.v0-results-val {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.v0-results-label {
  font-size: 0.875rem;
  opacity: 0.88;
  line-height: 1.4;
}

.v0-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.v0-why-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--v0-line);
}

.v0-why-photo img { width: 100%; height: 100%; object-fit: cover; }

.v0-why-points { display: flex; flex-direction: column; gap: 16px; max-width: 500px; }

.v0-why-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.v0-why-check {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--v0-primary-soft);
  color: var(--accent);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.v0-why-check svg {
  width: 0.875rem;
  height: 0.875rem;
  display: block;
}

.v0-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.v0-related-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.v0-related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: var(--shadow-v0-card-sm);
  color: inherit;
  transition: border-color var(--transition);
}

.v0-related-card:hover { border-color: var(--accent); }

/* Industry case study */
.v0-case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(34, 38, 41, 0.08);
}

.v0-case-image {
  position: relative;
  min-height: 360px;
}

.v0-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.v0-case-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.v0-case-body {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v0-case-quote {
  font-size: 1.1875rem;
  line-height: 1.6;
  font-weight: 600;
  margin: 0 0 22px;
}

.v0-case-stats {
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--v0-line);
  padding-top: 22px;
  flex-wrap: wrap;
}

.v0-case-stat-val {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--accent);
}

.v0-case-stat-label {
  font-size: 0.78125rem;
  color: var(--v0-muted);
}

/* Blog hub */
.v0-blog-hero { text-align: center; padding-bottom: 52px; }

.v0-blog-search {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}

.v0-blog-search input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--v0-line);
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.9375rem;
}

.v0-featured-post {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(34, 38, 41, 0.08);
  color: inherit;
  transition: transform var(--transition);
}

.v0-featured-post:hover { transform: translateY(-4px); }

.v0-featured-image {
  position: relative;
  min-height: 340px;
  background: var(--v0-lav);
}

.v0-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.v0-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.v0-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Blog post */
.v0-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--accent);
  z-index: 60;
  transition: width 0.1s linear;
}

.v0-article-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
  align-items: start;
}

.v0-article {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #332f4d;
}

.v0-article .lead {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--v0-ink);
  margin: 0 0 22px;
}

.v0-article h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 40px 0 16px;
}

.v0-article h3 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 32px 0 14px;
}

.v0-article p { margin: 0 0 22px; }

.v0-article > ul {
  list-style: none;
  margin: 0 0 24px;
  padding-left: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.v0-article > ul > li {
  position: relative;
  padding-left: 1.15em;
}

.v0-article > ul > li + li {
  margin-top: 0.35em;
}

.v0-article > ul > li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-secondary);
}

.v0-article blockquote {
  margin: 30px 0;
  padding: 24px 28px;
  background: var(--v0-primary-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  font-size: 1.1875rem;
  line-height: 1.6;
  font-weight: 600;
}

.v0-callout {
  margin: 30px 0;
  padding: 24px 26px;
  background: var(--v0-mint);
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.v0-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 18px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.v0-sidebar-box {
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-v0-card-sm);
}

.v0-sidebar-cta {
  background: var(--ink-950);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
}

.v0-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 24px;
  background: var(--bg-light);
  border: 1px solid var(--v0-line);
  border-radius: var(--radius-lg);
}

.v0-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.v0-author-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Hero price badge */
.v0-hero-price {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--v0-primary-soft);
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  margin-bottom: 18px;
}

/* Pricing grid */
.v0-pricing-block {
  width: 100%;
}

.v0-pricing-term-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  margin: 0 auto 28px;
  background: var(--v0-bg-soft, #f3f4f2);
  border: 1px solid var(--v0-line);
  border-radius: 12px;
  width: fit-content;
  max-width: 100%;
}

.v0-pricing-block > .v0-pricing-term-toggle {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.v0-pricing-term-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--v0-muted);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 16px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.v0-pricing-term-btn:hover {
  color: var(--v0-text);
}

.v0-pricing-term-btn.is-active {
  background: #fff;
  color: var(--v0-text);
  box-shadow: 0 1px 3px rgba(34, 38, 41, 0.08);
}

.v0-pricing-term-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.v0-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.v0-pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow-v0-card);
  display: flex;
  flex-direction: column;
}

.v0-pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(97, 137, 47, 0.14);
}

.v0-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-btn);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.v0-pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.v0-pricing-price {
  font-size: clamp(2rem, 4vw, 2.625rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

.v0-pricing-period {
  font-size: 0.875rem;
  color: var(--v0-muted);
  margin-bottom: 6px;
}

.v0-pricing-alt-price {
  font-size: 0.8125rem;
  color: var(--v0-muted);
  margin: 0 0 16px;
}

.v0-pricing-tier-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.v0-pricing-tier-link:hover {
  text-decoration: underline;
}

.v0-pricing-strip {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--v0-primary-soft);
  border: 1px solid var(--v0-line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v0-pricing-strip p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.v0-pricing-strip-icon {
  margin-right: 6px;
  display: inline-grid;
  place-items: center;
  vertical-align: -0.2em;
  color: var(--accent);
}

.v0-pricing-strip-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

.v0-pricing-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--v0-muted);
  margin: 0 0 20px;
}

.v0-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
}

.v0-pricing-features li {
  font-size: 0.84375rem;
  line-height: 1.5;
  padding: 9px 0;
  border-bottom: 1px solid var(--v0-line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.v0-pricing-features li:last-child { border-bottom: none; }

.v0-pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Compare table */
.v0-compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--v0-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-v0-card-sm);
}

.v0-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 640px;
}

.v0-compare-table th,
.v0-compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--v0-line);
}

.v0-compare-table thead th {
  background: var(--v0-primary-soft);
  font-weight: 700;
  font-size: 0.9375rem;
}

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

.v0-compare-table td:not(:first-child),
.v0-compare-table th:not(:first-child) { text-align: center; }

.v0-compare-yes { color: var(--accent); font-weight: 700; }
.v0-compare-yes svg {
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  vertical-align: -0.15em;
}
.v0-compare-no { color: var(--v0-muted); }
.v0-compare-partial { color: var(--v0-muted); font-size: 0.8125rem; }

/* Audience / choose grids */
.v0-audience-grid,
.v0-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.v0-audience-card,
.v0-choose-card {
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: var(--shadow-v0-card-sm);
}

.v0-audience-card h3,
.v0-choose-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.v0-audience-icon {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--accent);
}

.v0-audience-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.v0-audience-card p,
.v0-choose-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--v0-muted);
  margin: 0;
}

.v0-choose-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--v0-primary-soft);
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--accent);
}

.v0-choose-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

/* Compact hero (legal / utility) */
.v0-section--hero-compact {
  padding: calc(var(--nav-h) + 56px) 0 48px;
}

.v0-hero--compact {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.v0-hero--compact h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.v0-hero--compact .v0-hero-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Legal content wrap */
.v0-legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-v0-card);
}

.v0-legal-wrap h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text-primary, #1a1330);
}

.v0-legal-wrap h2:first-child { margin-top: 0; }

.v0-legal-wrap h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--text-primary, #1a1330);
}

.v0-legal-wrap dl {
  margin: 0 0 16px;
}

.v0-legal-wrap dt {
  font-weight: 700;
  color: var(--text-primary, #1a1330);
  margin: 0 0 4px;
  font-size: 0.9375rem;
}

.v0-legal-wrap dd {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--v0-muted);
}

.v0-legal-wrap strong {
  color: var(--text-primary, #1a1330);
  font-weight: 600;
}

.v0-legal-wrap code {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.8125rem;
  background: var(--v0-bg-b, #f6f4fc);
  padding: 2px 6px;
  border-radius: 4px;
}

.v0-legal-wrap p,
.v0-legal-wrap li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--v0-muted);
  margin: 0 0 14px;
}

.v0-legal-wrap ul {
  padding-left: 1.25rem;
  margin: 0 0 16px;
}

.v0-legal-wrap a {
  color: var(--accent);
  font-weight: 600;
}

.v0-check-grid--wide {
  max-width: none;
  grid-template-columns: repeat(3, 1fr);
}

/* Responsive */
@media (max-width: 992px) {
  .v0-hero-grid,
  .v0-about-grid,
  .v0-value-grid,
  .v0-why-grid,
  .v0-contact-split,
  .v0-case-study,
  .v0-featured-post,
  .v0-article-layout { grid-template-columns: 1fr; }

  .v0-cards-4,
  .v0-pain-grid,
  .v0-pain-grid--logic,
  .v0-pain-grid--3,
  .v0-process-grid,
  .v0-results-grid,
  .v0-related-grid,
  .v0-pricing-grid { grid-template-columns: repeat(2, 1fr); }

  .v0-cards-3,
  .v0-cards-2,
  .v0-audience-grid,
  .v0-choose-grid { grid-template-columns: 1fr; }

  .v0-benefits-strip {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .v0-benefit-card,
  .v0-benefit-card.active {
    flex: none;
    min-height: 280px;
  }

  .v0-benefit-vert,
  .v0-benefit-tagline { display: none; }

  .v0-benefit-detail { opacity: 1; transform: none; }

  .v0-benefit-photo,
  .v0-benefit-card.active .v0-benefit-photo {
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    border-color: transparent;
    box-shadow: none;
    z-index: 0;
  }

  .v0-benefit-bg {
    opacity: 0.35;
    mix-blend-mode: multiply;
    z-index: 1;
  }

  .v0-reviews-grid { grid-template-columns: 1fr; }

  .v0-sidebar { position: static; }
}

@media (max-width: 768px) {
  .v0-cards-2,
  .v0-cards-3[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .v0-hero-stats {
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 28px;
    width: 100%;
  }

  .v0-hero-stats > div {
    flex: 1 1 0;
    min-width: 0;
  }

  .v0-hero-stat-val {
    font-size: 1.375rem;
    line-height: 1.15;
  }

  .v0-hero-stat-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

@media (max-width: 600px) {
  .v0-pricing-grid,
  .v0-audience-grid,
  .v0-choose-grid { grid-template-columns: 1fr; }

  .v0-cards-4,
  .v0-pain-grid,
  .v0-process-grid,
  .v0-results-grid,
  .v0-related-grid,
  .v0-check-grid,
  .v0-check-grid--wide,
  .v0-form-grid-2 { grid-template-columns: 1fr; }

  /* GEO / AI logic + konkreettiset keinot stay 2-up on mobile */
  .v0-pain-grid--logic,
  .v0-pain-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .v0-pain-grid--logic .v0-pain-card,
  .v0-pain-grid--3 .v0-pain-card {
    padding: 18px 14px;
  }

  .v0-pain-grid--logic .v0-pain-card h3,
  .v0-pain-grid--3 .v0-pain-card h3 {
    font-size: 0.9375rem;
  }

  .v0-pain-grid--logic .v0-pain-card p,
  .v0-pain-grid--3 .v0-pain-card p {
    font-size: 0.78125rem;
  }

  .v0-legal-wrap { padding: 32px 24px; }

  .v0-section { padding: 64px 0; }

  .v0-section--hero,
  .v0-section--hero-compact,
  .cs-hero {
    padding-top: calc(var(--nav-h) + 64px);
  }

  .v0-hero-stats {
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 28px;
    width: 100%;
  }

  .v0-hero-stats > div {
    flex: 1 1 0;
    min-width: 0;
  }

  .v0-hero-stat-val {
    font-size: 1.25rem;
    line-height: 1.15;
  }

  .v0-hero-stat-label {
    font-size: 0.6875rem;
    line-height: 1.3;
  }

  .v0-float-card--top { right: 8px; }
  .v0-float-card--bottom { left: 8px; }
  .v0-hero-badge-spin { left: 8px; }

  .v0-container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
}

/* Anonymized proof cards + decision helper + tool reviews + cite box */

.proof-section { margin-top: 8px; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-card {
  background: #fff;
  border: 1px solid var(--v0-line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-card-metric {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.15;
}

.proof-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.proof-card-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--v0-muted);
}

.proof-card-link {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

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

.proof-stack {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--v0-line);
  border-radius: var(--radius-lg);
  background: var(--bg-light, #f7f7f5);
}

.proof-stack h3 {
  margin: 0 0 10px;
  font-size: 0.9375rem;
}

.proof-stack p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--v0-muted);
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.proof-chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--v0-line);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--text-primary);
}

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

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

.decision-helper {
  max-width: 720px;
  margin: 0 auto;
}

.decision-q {
  margin-bottom: 28px;
}

.decision-q h3 {
  margin: 0 0 14px;
  font-size: 1.0625rem;
}

.decision-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.decision-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border: 1px solid var(--v0-line);
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color var(--transition), background var(--transition);
}

.decision-option:hover,
.decision-option.is-active {
  border-color: var(--accent);
  background: var(--accent-light);
}

.decision-result {
  margin-top: 8px;
  padding: 22px 24px;
  border: 1px solid var(--v0-line);
  border-left: 4px solid var(--accent);
  background: #fff;
  display: none;
}

.decision-result.is-visible { display: block; }

.decision-result h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
}

.decision-result p {
  margin: 0 0 14px;
  color: var(--v0-muted);
  line-height: 1.6;
}

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

.decision-reset {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--v0-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.decision-reset:hover {
  color: var(--v0-ink, #1a1a1a);
}

.tool-group { margin-bottom: 48px; }

.tool-group h2 { margin: 0 0 8px; }

.tool-group > p {
  margin: 0 0 24px;
  color: var(--v0-muted);
  line-height: 1.6;
}

.tool-review {
  padding: 22px 0;
  border-bottom: 1px solid var(--v0-line);
}

.tool-review:last-child { border-bottom: none; }

.tool-review h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
}

.tool-review p {
  margin: 0 0 8px;
  color: var(--v0-muted);
  line-height: 1.65;
}

.tool-review .tool-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.faq-group { margin-bottom: 40px; }

.faq-group-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cite-box {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid var(--v0-line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.cite-box h2 {
  margin: 0 0 10px;
  font-size: 1.125rem;
}

.cite-box p {
  margin: 0 0 12px;
  color: var(--v0-muted);
  line-height: 1.6;
}

.cite-box .cite-format {
  display: block;
  padding: 12px 14px;
  background: var(--bg-light, #f7f7f5);
  border: 1px solid var(--v0-line);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-primary);
}

