/* LetsWrench — inspired layout, mobile-first */

:root {
  --bg: #f4f4f4;
  --bg-card: #fff;
  --dark: #152238;
  --dark-soft: #1e3050;
  --text: #1a1a1a;
  --text-muted: #555;
  --text-on-dark: #f0f0f0;
  --accent: #dc2626;
  --accent-hover: #b91c1c;
  --star: #fbbf24;
  --proof-check: #86efac;
  --border: #ddd;
  --radius: 6px;
  --font: "DM Sans", system-ui, sans-serif;
  --tap-min: 48px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-bottom: 4.5rem;
}

.wrap {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .wrap {
    max-width: 56rem;
    padding: 0 2rem;
  }

  body {
    padding-bottom: 0;
  }
}

/* Header */
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  display: block;
  height: 3.75rem;
  width: auto;
  max-width: min(12.5rem, 58vw);
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 600px) {
  .header-inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .logo img {
    height: 4.25rem;
    max-width: 14rem;
  }
}

.site-nav {
  display: none;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--accent);
}

@media (min-width: 600px) {
  .site-nav {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn-header {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  min-height: 2.5rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-header:hover {
  background: var(--accent-hover);
}

.btn-text {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  min-width: 10rem;
}

.btn-text:hover {
  background: var(--dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
  width: 100%;
}

.btn-outline:hover {
  border-color: var(--dark);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--text-on-dark);
  padding: 1.25rem 0 0;
}

.hero-layout {
  padding-bottom: 1.25rem;
  text-align: center;
}

.trust-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.45rem 0.875rem;
  margin-bottom: 1rem;
}

.trust-pill .stars {
  font-size: 0.75rem;
}

.trust-pill strong {
  color: #fff;
}

.hero-title {
  margin: 0 0 0.35rem;
  line-height: 1.1;
}

.hero-city,
.hero-role {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-city {
  font-size: clamp(1.75rem, 7vw, 2.75rem);
  color: #fff;
}

.hero-role {
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-subhead {
  margin: 0 auto 1rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 22rem;
}

.hero-proof {
  list-style: none;
  margin: 0 0 0.875rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}

.hero-proof li::before {
  content: "✓ ";
  color: var(--proof-check);
}

.pricing-banner {
  margin: 0 auto 1rem;
  max-width: 20rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  line-height: 1.35;
}

.hero-area-line {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-area-line strong {
  color: rgba(255, 255, 255, 0.85);
}

/* Pricing pride — main site & landing */
.pricing-pride {
  background: var(--bg-card);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing-pride__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.pricing-pride__title {
  margin: 0 auto 0.65rem;
  max-width: 28rem;
  font-size: clamp(1.25rem, 4vw, 1.625rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
}

.pricing-pride__text {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (min-width: 992px) {
  .pricing-pride {
    padding: 2.5rem 0;
  }

  .pricing-pride__title {
    max-width: 40rem;
  }
}

/* Compact call / text actions */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto 0.75rem;
  max-width: 20rem;
}

.contact-actions--hero {
  max-width: 100%;
}

.contact-actions--compact {
  margin-top: 1rem;
}

.action-call {
  flex: 1 1 11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  -webkit-tap-highlight-color: transparent;
}

.action-call:active {
  background: var(--accent-hover);
}

.action-call--primary {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 0.5rem;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.action-call--section {
  margin-top: 1.25rem;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
}

.action-call__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

.action-call__number {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.2;
}

.action-text {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.action-text--link {
  display: inline-block;
  min-height: auto;
  padding: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: none;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.action-text--dark {
  color: var(--text-muted);
}

/* Single hero photo */
.hero-image {
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
  max-width: 56rem;
}

.hero-image img {
  width: 100%;
  max-height: 16rem;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius);
  display: block;
}

@media (min-width: 600px) {
  .hero-image img {
    max-height: 20rem;
  }
}

.hero-image.is-placeholder img {
  display: none;
}

.hero-image.is-placeholder {
  aspect-ratio: 16 / 9;
  max-height: 14rem;
  background: linear-gradient(135deg, var(--dark-soft), var(--dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-caption {
  margin: 0.35rem 0 0;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.hero-image:not(.is-placeholder) .hero-image-caption {
  display: none;
}

.hero-image-caption code {
  font-size: 0.625rem;
}

.section-heading {
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 0.5rem;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section-intro code {
  font-size: 0.8125rem;
  background: var(--bg);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-soft);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item.is-placeholder img {
  display: none;
}

.gallery-item.is-placeholder {
  background: linear-gradient(135deg, var(--dark-soft) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item.is-placeholder::before {
  content: "📷 Add your photo";
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 0.5rem;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.35rem 0.5rem;
  font-size: 0.625rem;
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.gallery-item:not(.is-placeholder) .gallery-caption {
  display: none;
}

.gallery-section {
  padding: 2.5rem 0;
  background: var(--bg);
}

/* Services — organized categories */
.services {
  background: var(--bg);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.services--after-hero {
  border-top: none;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
}

.service-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-category {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.service-category-title {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--dark);
  color: #fff;
}

.service-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-category-list li {
  display: grid;
  gap: 0.1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

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

.service-category-list strong {
  font-size: 0.9375rem;
  color: var(--dark);
}

.service-category-list span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (min-width: 600px) {
  .service-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Benefits */
.benefits {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--text-on-dark);
  padding: 2.5rem 0;
  text-align: center;
}

.benefits-heading {
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  text-transform: capitalize;
}

.benefits-intro {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  text-align: left;
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits-grid li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.benefits-grid strong {
  display: block;
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.benefits-grid span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* About */
.about {
  padding: 2.5rem 0;
  background: var(--bg);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about h2 {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.about-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-photo {
  flex: 0 0 auto;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .about-grid {
    flex-direction: row;
    align-items: center;
  }

  .about-photo {
    flex: 0 0 42%;
  }
}

.footer-phone {
  font-weight: 700;
  color: #fff !important;
}

/* Reviews */
.reviews {
  background: var(--bg-card);
  padding: 2rem 0;
  border-top: none;
}

.reviews-heading {
  text-align: center;
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.reviews-intro {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.stars {
  color: var(--star);
  letter-spacing: 0.05em;
}

.stars-large {
  font-size: 1.25rem;
}

.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.carousel-btn {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-card);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

.reviews-track {
  flex: 1;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-slide {
  flex: 0 0 90%;
  scroll-snap-align: center;
}

@media (min-width: 600px) {
  .review-slide {
    flex: 0 0 65%;
  }
}

.review {
  margin: 0;
  padding: 1rem;
  padding-right: 2.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 2px solid var(--border);
  height: 100%;
  position: relative;
}

.review-google-badge {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 1;
}

.review-google-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.review-google-icon {
  display: block;
  width: 16px;
  height: 16px;
  shape-rendering: geometricPrecision;
}

.review-google-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.25s ease, opacity 0.2s ease;
}

.review-google-badge:hover .review-google-label,
.review-google-badge:focus-within .review-google-label {
  max-width: 7rem;
  opacity: 1;
}

.review-top {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  padding-right: 1.25rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  background: #ebebeb;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: block;
}

.review-avatar--placeholder {
  object-fit: contain;
  padding: 4px;
  background: #e5e5e5;
}

.review-meta .stars {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.75rem;
}

.review-author {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  font-style: normal;
  color: var(--text-muted);
}

.review-text {
  margin: 0;
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}

.carousel-hint {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0.75rem 0 0;
}

.btn-show-all {
  margin-top: 0.5rem;
}

.reviews-all {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 22rem;
  overflow-y: auto;
  margin-top: 0.75rem;
}

.reviews-all.is-visible {
  display: flex;
}

/* Mid CTA */
.cta-section {
  background: var(--dark);
  padding: 2rem 0 2.5rem;
  text-align: center;
}

.cta-section__title {
  margin: 0 0 0.35rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
}

.cta-section__sub {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-hours {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

/* Area & FAQ */
.area,
.faq,
.contact {
  padding: 2rem 0;
}

.area {
  background: var(--bg);
}

.faq {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.contact {
  background: var(--bg-card);
  text-align: center;
  border-top: 1px solid var(--border);
}

.contact .action-text--link {
  margin-top: 0.25rem;
}

.area h2,
.faq h2,
.contact h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  text-align: center;
}

.area p {
  margin: 0;
  color: var(--text-muted);
  text-align: center;
}

.contact-phone a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
}

.contact-text a {
  font-weight: 600;
  color: var(--dark);
}

.contact-hours {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* FAQ */
.faq-list {
  margin: 0;
}

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

.faq-question {
  width: 100%;
  min-height: var(--tap-min);
  padding: 1rem 2rem 1rem 0;
  text-align: left;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--text-muted);
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  margin: 0;
  padding: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0 1rem;
  font-size: 0.875rem;
}

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

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

.footer-logo {
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.25rem;
}

.footer-heading {
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

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

.footer-copy {
  text-align: center;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.5rem 1rem calc(0.5rem + env(safe-area-inset-bottom, 0));
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
}

.sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Lead capture form */
.lead-form-section {
  padding: 3rem 0;
  background: #f1f4f9;
  text-align: center;
}

.lead-form-section .section-intro {
  margin: 0.5rem auto 1.5rem;
}

.lead-form {
  max-width: 460px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
  text-align: left;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #152238;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #c6cedd;
  border-radius: 10px;
  font: inherit;
  color: #152238;
  background: #fff;
  box-sizing: border-box;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid #dc2626;
  outline-offset: 1px;
  border-color: #dc2626;
}

.lead-form-submit {
  margin-top: 0.25rem;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lead-form-submit:hover {
  background: #b91c1c;
}

.lead-form-note {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: #5b6b85;
  text-align: center;
}

.lead-form-honey {
  display: none;
}

/* Thank-you page */
.thanks-hero {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}
