:root {
  --yellow: #FED402;
  --black: #0C0C0C;
  --white: #F5F4F0;
  --gray: #333333;
  --google-gold: #F5B301;
  --accent: #1F6FEB;
  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #F2F2F2;
  background-color: var(--black);
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: underline;
}

main {
  display: block;
}

section {
  padding: 3.5rem 1.25rem;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 2.5rem;
  }
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.1rem;
  }
}

.section-intro {
  margin: 0;
  color: #D0D0D0;
}

.section-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.section-cta .button {
  color: var(--black);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: padding 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  padding: 0.9rem 1.25rem;
  min-height: 3.5rem;
}

@media (max-width: 767px) {
  .site-header {
    background-color: #0C0C0C;
    min-height: 4rem;
    padding: 0.6rem 1rem;
  }
}

.site-header.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  padding-block: 0.5rem;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 101px;
  width: auto;
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 3rem;
  }
  .logo {
    height: 48px;
    max-height: 48px;
  }
  .header-left {
    min-width: 0;
    flex: 1 1 auto;
  }
  .logo-link {
    display: block;
    max-width: 180px;
  }
  .logo-link .logo {
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.main-nav {
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background-color: var(--yellow);
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-call-mobile {
  display: none;
}

.header-cta {
  display: none;
}

@media (max-width: 767px) {
  .header-call-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background-color: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
  .header-call-mobile:hover {
    text-decoration: none;
    filter: brightness(1.05);
  }
  /* Keep header "Book Now" hidden on mobile so it doesn't cover logo/call/hamburger */
  .site-header .header-cta {
    display: none !important;
  }
}

.hamburger {
  background: none;
  border: none;
  padding: 0.4rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset-inline: 0;
  top: 4rem;
  background-color: #101010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-100%);
  transition: transform 0.2s ease, visibility 0.2s ease;
  z-index: 99;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .mobile-menu {
    top: 4rem;
  }
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-book-cta {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1rem;
  background-color: var(--yellow);
  color: var(--black);
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .site-header {
    padding-inline: 2.5rem;
  }

  .logo {
    height: 120px;
  }

  .main-nav {
    display: block;
  }

  .header-call-mobile {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    background-color: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    text-decoration: none;
  }

  .header-cta:hover {
    text-decoration: none;
    filter: brightness(1.05);
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* Hero */
.hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1.25rem 4rem;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 2.5rem 5rem;
    min-height: 80vh;
  }
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.hero-kicker {
  margin: 0 0 0.5rem;
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero-title {
  margin: 0 0 0.75rem;
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  color: #E4E3DD;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  text-decoration: none;
}

.button-primary {
  background-color: var(--yellow);
  color: var(--black);
}

.button-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(245, 244, 240, 0.4);
}

.button-dark {
  background-color: var(--black);
  color: var(--yellow);
}

.button-outline {
  background-color: transparent;
  color: var(--black);
  border-color: var(--black);
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button:hover {
  text-decoration: none;
  filter: brightness(1.03);
}

.hero-supporting {
  margin: 0;
  font-size: 0.92rem;
  color: #E4E3DD;
}

.hero-supporting a {
  color: var(--yellow);
}

/* Info section (How it works / Service areas) */
.info-section {
  background-color: #111111;
}

.info-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.info-item {
  background-color: #1A1A1A;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(245, 244, 240, 0.06);
  font-size: 0.95rem;
}

.info-item h3 {
  margin: 0 0 0.5rem;
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-item--service-areas .service-areas-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
  margin-top: 0.4rem;
}

.info-item--service-areas h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.info-item a {
  color: var(--yellow);
}

/* Google Reviews */
.google-reviews {
  background-color: #111111;
  padding-top: 2.75rem;
  padding-bottom: 3.25rem;
}

.google-reviews-inner {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 244, 240, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  padding: 1.5rem 1.5rem 1.7rem;
  background: radial-gradient(circle at top left, #333333 0%, #161616 55%, #101010 100%);
}

@media (min-width: 768px) {
  .google-reviews-inner {
    padding: 1.8rem 2rem 2rem;
  }
}

.google-reviews-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

@media (min-width: 640px) {
  .google-reviews-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.google-logo {
  height: 26px;
  width: auto;
}

.google-rating {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.google-rating-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.google-rating-score {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--yellow);
}

.google-rating-stars svg {
  display: block;
}

.google-rating-text {
  margin: 0;
  font-size: 0.9rem;
  color: #D0D0D0;
}

.google-reviews-copy {
  margin: 0;
  font-size: 0.92rem;
  color: #E0E0E0;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .google-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.google-review {
  background-color: #1A1A1A;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 244, 240, 0.08);
  padding: 1rem 1.1rem 1.1rem;
  font-size: 0.9rem;
}

.google-review-text {
  margin: 0;
}

.google-review-author {
  margin: 0.7rem 0 0;
  font-weight: 600;
  color: #F5F4F0;
}

.google-review--desktop-only {
  display: none;
}

@media (min-width: 640px) {
  .google-review--desktop-only {
    display: block;
  }
}

/* Services summary (What we fix) */
.services-summary {
  background-color: #050505;
}

.services-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-item {
  background-color: #151515;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(245, 244, 240, 0.06);
  font-size: 0.95rem;
}

.service-item h3 {
  margin: 0 0 0.5rem;
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Features */
.features {
  background-color: #111111;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.feature-item {
  background-color: #1A1A1A;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(245, 244, 240, 0.06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: #000000;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}

.feature-item h3 {
  margin: 0 0 0.4rem;
  font-family: "Barlow Condensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* Before & After results */
.results {
  background-color: #050505;
}

.results-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.result-card {
  background-color: #141414;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(245, 244, 240, 0.08);
}

.result-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.result-card:hover img {
  transform: scale(1.04);
}

.result-card figcaption {
  padding: 0.8rem 1rem 1rem;
  font-size: 0.9rem;
  color: #E8E8E8;
}

/* Testimonials */
.trust-social-proof {
  background-color: #111111;
}

.trust-container {
  max-width: 1060px;
  margin: 0 auto;
}

.trust-headline {
  margin: 0 0 1.25rem;
  text-align: center;
  font-family: "Barlow Condensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-rating-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.trust-rating-text {
  font-size: 0.95rem;
  color: #D0D0D0;
}

.trust-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .trust-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.trust-review {
  margin: 0;
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-md);
  background-color: #1A1A1A;
  border: 1px solid rgba(245, 244, 240, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  position: relative;
}

.trust-review::before {
  content: "“";
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-size: 3rem;
  color: rgba(254, 212, 2, 0.55);
  pointer-events: none;
}

.review-author {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
  color: #F5F4F0;
}

/* CTA */
.cta-section {
  background-color: var(--yellow);
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

#cta-heading {
  margin: 0 0 0.75rem;
  font-family: "Barlow Condensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}

.cta-text {
  margin: 0 0 1.5rem;
  color: #1F1500;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 480px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.button-dark {
  border: none;
}

.button-outline {
  border-color: rgba(12, 12, 12, 0.7);
}

/* Contact form */
.contact-section {
  background-color: #111111;
}

.contact-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-grid label,
.contact-message {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 0.15rem;
}

.contact-section input,
.contact-section textarea {
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 244, 240, 0.2);
  font-family: inherit;
  font-size: 0.9rem;
  background-color: #050505;
  color: #F5F4F0;
}

.contact-section textarea {
  resize: vertical;
}

.contact-section button {
  margin-top: 0.75rem;
}

.button-primary-light {
  background-color: var(--yellow);
  color: var(--black);
  border: none;
}

/* Footer */
.footer {
  background-color: var(--black);
  color: rgba(245, 244, 240, 0.9);
  padding: 2.75rem 1.5rem 1.75rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr;
  gap: 2rem;
}

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

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 0.85rem;
}

.footer-description {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 244, 240, 0.8);
}

.footer-column h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

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

.footer-column li + li {
  margin-top: 0.25rem;
}

.footer-column a {
  color: rgba(245, 244, 240, 0.9);
  font-size: 0.92rem;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}

.footer-social {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  font-size: 0.9rem;
}

.footer-social img {
  height: 24px;
  width: auto;
  filter: invert(100%);
  opacity: 0.9;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(245, 244, 240, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom a {
  color: rgba(245, 244, 240, 0.9);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-credit {
  opacity: 0.7;
  font-size: 0.8rem;
}

.footer--center .footer-bottom {
  justify-content: center;
  text-align: center;
}

/* ===== Ad landing page: minimal header + hero with form ===== */
.site-header--landing .main-nav,
.site-header--landing .hamburger,
.site-header--landing .header-call-mobile {
  display: none !important;
}

.site-header--landing .header-cta,
.site-header--landing .header-cta--landing {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background-color: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.site-header--landing .header-cta:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

/* Ad landing: header logo 50% larger, header resized to fit */
.site-header--landing .logo {
  height: 54px;
  max-height: 54px;
}

@media (min-width: 768px) {
  .site-header--landing .logo {
    height: 108px;
    max-height: 108px;
  }
  .site-header--landing {
    padding: 0.6rem 1.25rem !important;
  }
}

/* Ad landing mobile: tighter header + hero above the fold */
@media (max-width: 767px) {
  .site-header--landing {
    padding: 0.4rem 0.75rem !important;
    min-height: auto !important;
  }
  .site-header--landing .header-inner {
    min-height: 3.5rem;
  }
  .site-header--landing .logo {
    height: 54px !important;
    max-height: 54px !important;
  }
  .hero-section--with-form {
    min-height: 0;
    padding: 1rem 1rem 1.5rem !important;
  }
  .hero-section--with-form .hero-section--with-form-inner {
    gap: 1rem;
    padding: 0 0;
  }
  .hero-section--with-form .hero-content--landing .hero-kicker {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  .hero-section--with-form .hero-content--landing .hero-personality {
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
  }
  .hero-section--with-form .hero-content--landing .hero-title {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 0.4rem;
  }
  .hero-section--with-form .hero-content--landing .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  .hero-section--with-form .hero-content--landing .hero-buttons {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }
  .hero-section--with-form .hero-content--landing .hero-buttons .button {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
  }
  .hero-section--with-form .hero-content--landing .hero-urgency {
    font-size: 0.75rem;
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .hero-section--with-form .hero-content--landing .hero-supporting {
    font-size: 0.85rem;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.4;
  }
  .hero-section--with-form .hero-form-wrap {
    padding: 1rem;
  }
  .hero-section--with-form .hero-form-trust {
    margin-bottom: 0.75rem;
  }
  .hero-section--with-form .hero-form-review .google-review-text {
    font-size: 0.8rem;
  }
}

/* Hero with form: side-by-side on desktop, stacked on mobile */
.hero-section--with-form .hero-section--with-form-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .hero-section--with-form {
    padding: 5rem 2.5rem 4rem;
  }
  .hero-section--with-form .hero-section--with-form-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 2.5rem;
  }
  .hero-section--with-form .hero-content--landing {
    flex: 1 1 50%;
    max-width: 520px;
  }
  .hero-section--with-form .hero-form-wrap {
    flex: 0 1 380px;
  }
}

.hero-personality {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(245, 244, 240, 0.9);
}

.hero-urgency {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: rgba(245, 244, 240, 0.65);
}

.hero-form-wrap {
  background-color: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.hero-form-trust {
  margin-bottom: 1.25rem;
}

.hero-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.hero-form-badge .google-logo {
  height: 20px;
  width: auto;
}

.hero-form-badge .google-rating-score {
  font-weight: 700;
  color: var(--yellow);
  font-size: 1rem;
}

.hero-form-badge .google-rating-stars {
  display: inline-flex;
}

.hero-form-review {
  margin: 0;
  padding: 0;
  border: none;
}

.hero-form-review .google-review-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #D0D0D0;
  margin: 0 0 0.35rem;
}

.hero-form-review .google-review-author {
  font-size: 0.8rem;
  color: rgba(245, 244, 240, 0.8);
  font-style: normal;
}

.hero-form label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.hero-form input,
.hero-form textarea {
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 244, 240, 0.2);
  font-family: inherit;
  font-size: 0.9rem;
  background-color: #0C0C0C;
  color: #F5F4F0;
}

.hero-form textarea {
  resize: vertical;
  min-height: 60px;
}

.hero-form button {
  width: 100%;
  margin-top: 0.25rem;
}

.hero-form-note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: rgba(245, 244, 240, 0.65);
}

.form-optional {
  font-weight: 400;
  opacity: 0.8;
  font-size: 0.85em;
}

.contact-grid--landing.contact-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-grid--landing.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

