/* Homepage — PMA-inspired: impactful headline, stats bar, floating testimonial
   Benefit-driven, above-the-fold density, premium feel */

/* Hero — full-screen subtle fade, right-anchored content, pills + icons */
.home-feature .hero {
  justify-content: flex-end;
  align-items: center;
}
.home-feature .hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(26, 26, 26, 0.6) 50%,
    rgba(26, 26, 26, 0.92) 100%
  );
  pointer-events: none;
  z-index: -1;
}
.home-feature .hero-overlay {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 100vh;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12vh var(--container-padding) 2rem;
  margin: 0;
  animation: heroOverlayIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.home-feature .hero-overlay-content {
  max-width: 520px;
  min-width: 0;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 4rem;
  transform: scale(1.2);
  transform-origin: top right;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
}
.home-feature .hero-benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.75rem;
}
.home-feature .hero-benefit-list {
  margin: 1.1rem 0 1.45rem;
  padding-left: 1.15rem;
  list-style: disc;
  color: #fff;
  text-align: left;
  max-width: 500px;
}
.home-feature .hero-benefit-list li {
  margin: 0 0 0.42rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}
.home-feature .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.home-feature .hero-pill:hover {
  background: rgba(0, 0, 0, 0.45);
}
.home-feature .hero-pill-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  opacity: 0.9;
}
.home-feature .hero-pill-highlight {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.98);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}
.home-feature .hero-pill-highlight .hero-pill-icon {
  color: var(--color-primary);
  opacity: 1;
}
@keyframes heroOverlayIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-feature .hero-overlay {
    animation: none;
  }
}
.home-feature .hero-headline {
  text-align: left;
}
.home-feature .hero-stats {
  justify-content: flex-start;
}
.home-feature .hero-stat {
  text-align: left;
}
.home-feature .hero-benefit {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.home-feature .hero .cta-group {
  justify-content: flex-start;
}
.home-feature .hero .hero-note {
  text-align: left;
}

.home-feature .hero-video {
  position: relative;
}
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: #e5e0d8;
  z-index: 0;
}
.hero-video-layers {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video-clip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}
.hero-video-clip.hero-video-active {
  opacity: 1;
  z-index: 1;
}

/* High-contrast value prop at bottom of hero */
.home-feature .hero-value-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  padding: 1rem var(--container-padding);
  z-index: 3;
}
.home-feature .hero-value-text {
  margin: 0;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Mixed typography headline — serif for key phrases */
.home-feature .hero-headline {
  display: block;
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.6vw, 2.875rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #fff;
}
.home-feature .hero-headline .serif {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  font-size: 1.25em;
}
.home-feature .hero-subhead {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Stats bar — PMA-style: large numbers, scannable */
.home-feature .hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 3rem;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  list-style: none;
}
.home-feature .hero-stat {
  text-align: center;
}
.home-feature .hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.home-feature .hero-stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
}

/* Benefit-driven descriptive text */
.home-feature .hero-benefit {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

/* CTA group — pill primary, clear secondary */
.home-feature .hero .cta-group {
  gap: 1rem;
}
.home-feature .hero .btn-primary {
  border-radius: 999px;
  padding: 0.875rem 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.home-feature .hero .cta-secondary {
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  text-shadow: inherit;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.9);
}
.home-feature .hero .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* Founder avatar — personal touch, live indicator, clickable call */
.home-feature .hero-founder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.home-feature .hero-founder-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.home-feature .hero-founder-link:hover {
  opacity: 0.9;
}
.home-feature .hero-founder-phone-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}
.home-feature .hero-founder-live {
  padding: 0.2rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  background: #16a34a;
  border-radius: 0.25rem;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .home-feature .hero-founder-live { animation: none; }
}
.home-feature .hero-founder-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.home-feature .hero-founder-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Trust strip — elevated, integrated feel */
.home-feature .trust-strip {
  background: linear-gradient(180deg, rgba(250, 249, 247, 0.98) 0%, var(--color-bg-alt) 100%);
  padding: 2.25rem var(--container-padding);
  border-top: 1px solid rgba(139, 115, 85, 0.12);
}
.home-feature .trust-stat strong {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.home-feature .trust-stat span {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.home-feature .trust-stat-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.home-feature .trust-stat-icon .trust-stat-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
}
.home-feature .trust-stat-icon .trust-stat-icon-svg svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 768px) {
  .home-feature .hero-value-bar {
    padding: 1rem 1.25rem;
  }
  .home-feature .hero-value-text {
    font-size: 0.875rem;
  }
  .home-feature .hero-overlay {
    justify-content: center;
    min-height: 100svh;
    padding: 9.5rem 1rem 5.75rem;
  }
  .home-feature .hero-overlay-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    transform-origin: center;
    text-align: center;
  }
  .home-feature .hero-headline {
    margin-bottom: 0.9rem;
    font-size: clamp(1.95rem, 8.2vw, 2.4rem);
    line-height: 1.18;
    text-align: center;
  }
  .home-feature .hero-subhead {
    font-size: 1.04rem;
    line-height: 1.45;
    text-align: center;
  }
  .home-feature .hero-benefit-pills {
    justify-content: center;
    margin: 1rem 0 1.25rem;
  }
  .home-feature .hero-benefit-list {
    margin: 1rem auto 1.2rem;
    padding-left: 1.05rem;
    text-align: left;
  }
  .home-feature .hero .cta-group {
    justify-content: center;
  }
  .home-feature .hero-founder {
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

@media (max-width: 480px) {
  .home-feature .hero-overlay {
    padding: 8.75rem 0.8rem 5.5rem;
  }
  .home-feature .hero-headline {
    font-size: clamp(1.75rem, 9vw, 2.15rem);
    letter-spacing: 0.015em;
  }
  .home-feature .hero-subhead {
    font-size: 0.98rem;
  }
  .home-feature .hero-benefit-pills {
    gap: 0.45rem;
  }
  .home-feature .hero-benefit-list li {
    font-size: 0.92rem;
  }
  .home-feature .hero-pill {
    font-size: 0.81rem;
    padding: 0.38rem 0.72rem;
  }
  .home-feature .hero-founder {
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }
}

/* Process parallax — 100vh with peaceful park bg */
.process-parallax {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.process-parallax-bg {
  position: absolute;
  inset: -12% 0;
  background-image: url('small_assets/dominik-lange-VUOiQW4OeLI-unsplash.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.03);
  will-change: transform;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .process-parallax-bg {
    transform: none;
    will-change: auto;
  }
}
.process-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250, 249, 247, 0.88) 0%, rgba(245, 243, 239, 0.92) 100%);
  z-index: 1;
}
.process-parallax-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem var(--container-padding);
}
.process-parallax-content h2 {
  color: var(--color-text);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}
.process-parallax-content .section-block > .container > p:first-of-type {
  color: var(--color-text-muted);
}

/* Tampa Bay local — parallax value prop at bottom */
.tampa-local-parallax {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tampa-local-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('small_assets/sven-mieke-zlA7c39DfFk-unsplash.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .tampa-local-parallax-bg {
    background-attachment: scroll;
  }
}
.tampa-local-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28, 25, 23, 0.5) 0%, rgba(28, 25, 23, 0.75) 100%);
  z-index: 1;
}
.tampa-local-parallax-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem var(--container-padding);
  text-align: center;
}
.tampa-local-parallax-content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.tampa-local-parallax-content h2 .serif {
  font-style: italic;
}
.tampa-local-lead {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.tampa-local-tagline {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
