@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=League+Spartan:wght@400;500;600;700;800&display=swap');

:root {
  --brand-red: #ff2d2d;
  --brand-red-dark: #d61919;
  --brand-orange: #ff6b35;
  --brand-green: #27ae60;
  --steel-blue: #2c3e50;
  --charcoal: #1c1c1c;
  --smoke: #f7f7f7;
  --section-alt: #f7f7f7;
  --text: #333333;
  --muted: #555555;
  --border: #bfbfbf;
  --panel: #ffffff;
  --radius: 14px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  font-family: 'League Spartan', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--smoke);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  height: 100%;
  font-size: 1.105rem;
}

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

a:hover,
a:focus-visible {
  color: var(--brand-red);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.logo-image {
  height: 48px; /* adjust as needed */
  width: auto;
  display: block;
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 10000;
}

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

.site-header {
  background: #ffffff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  text-decoration: none;
}

.brand-mark:hover,
.brand-mark:focus-visible {
  color: var(--charcoal);
  opacity: 0.92;
}

.logo-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #ffffff;
  font-family: 'Anton', 'Bebas Neue', 'League Spartan', sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.35rem;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(255, 45, 45, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--charcoal);
}

.logo-text .logo-line-strong {
  font-family: 'Anton', 'Bebas Neue', 'League Spartan', sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
}

.logo-text .logo-line-sub {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.92;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--charcoal);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand-orange);
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 45, 45, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
  color: #000;
}

.btn-secondary {
  background: #ffffff;
  color: var(--charcoal);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.btn-outline {
  background: #ffffff;
  border-color: var(--border);
  color: var(--charcoal);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.hero {
  padding: 3.5rem 0 2.5rem;
  background-image: url('/assets/img/heroimg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: #ffe8e8;
  color: var(--brand-red);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  width: fit-content;
}

.hero h1 {
  font-family: 'Anton', 'League Spartan', sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  margin: 0.35rem 0;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
}

.hero-ctas .btn {
  width: 100%;
}

.about-hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .about-hero-container {
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }
}

.about-hero-content {
  display: flex;
  flex-direction: column;
}

.about-hero-headshot {
  display: none;
}

@media (min-width: 992px) {
  .about-hero-headshot {
    display: block;
    text-align: right;
    width: fit-content;
  }
  
  .about-hero-headshot img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 100%;
    border-radius: 150px;
    object-fit: contain;
    margin-left: auto;
    display: block;
  }
}

.about-hero-headshot-mobile {
  display: block;
  margin: 1.5rem 0;
  text-align: center;
}

.about-hero-headshot-mobile img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 500px;
  border-radius: 150px;
  object-fit: contain;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .about-hero-headshot-mobile {
    display: none;
  }
}

.about-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .about-hero-ctas {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .about-hero-ctas .btn {
    width: auto;
  }
}

.how-it-works-ctas {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.how-it-works-ctas .btn {
  width: auto;
  min-width: 200px;
  text-align: center;
}

@media (max-width: 767px) {
  .how-it-works-ctas {
    flex-direction: column;
  }
  
  .how-it-works-ctas .btn {
    width: 100%;
  }
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.badge {
  background: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  font-weight: 700;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
}

.section {
  padding: 3rem 0;
  background: #fff;
}

.section.alt {
  background: var(--section-alt);
}

/* First section after hero is always white on every page */
main section.hero + section {
  background: #fff !important;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: 'Bebas Neue', 'League Spartan', sans-serif;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.section .section-lead {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: #fff;
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffe1e1;
  color: var(--brand-red);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.table-responsive {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}

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

table th {
  background: #f1f1f1;
}

.table-highlight {
  background: #ffecec;
  color: var(--charcoal);
  font-weight: 700;
}

.compare-table {
  margin-top: 1rem;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  border: 1px solid var(--border);
}

.compare-table th {
  background: var(--charcoal);
  color: #fff;
  font-family: 'Bebas Neue', 'League Spartan', sans-serif;
  letter-spacing: 0.02em;
}

.compare-table tbody th {
  background: #f9f9f9;
  color: var(--charcoal);
  text-align: left;
  font-size: 1rem;
  width: 32%;
}

.compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ffe8e8;
  color: var(--brand-red);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.table-highlight {
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.08), rgba(255, 107, 53, 0.08));
  color: var(--charcoal);
  font-weight: 800;
}

.table-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 100%);
  transition: transform 300ms ease;
}

.carousel-slide {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.carousel-slide video {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
}

.carousel-caption {
  font-weight: 700;
  color: var(--text);
}

.carousel-meta {
  color: var(--muted);
}

.carousel-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-button {
  pointer-events: auto;
  background: rgba(28, 28, 28, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--brand-red);
}

.map-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.map-gallery .tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.guarantee {
  border: 2px solid #ffe3e3;
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fff7f7;
}

.guarantee ul {
  padding-left: 1.2rem;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.guarantee li::marker {
  color: var(--brand-red);
}

.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }
}

.faq details {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.3s ease;
}

/* Remove bottom border from specific FAQs only when Show More button is present */
.faq:has(.faq-toggle-wrapper) .faq-grid details.faq-no-border {
  border-bottom: none;
}

.faq-grid details:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .faq-grid details:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
}

.faq-hidden {
  display: none;
}

.faq-toggle-wrapper {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 0;
}

.faq-toggle {
  min-width: 180px;
}

.final-cta {
  text-align: center;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--charcoal), #2b2b2b 40%, var(--brand-red));
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.final-cta h2 {
  color: #fff;
}

.final-cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.final-cta-buttons .btn {
  width: auto;
  min-width: 200px;
  text-align: center;
}

@media (max-width: 767px) {
  .final-cta-buttons {
    flex-direction: column;
  }
  
  .final-cta-buttons .btn {
    width: 100%;
  }
}

.final-cta .btn-secondary {
  background: #ffffff;
  color: var(--charcoal);
  border-color: transparent;
}

.final-cta .btn-secondary:hover,
.final-cta .btn-secondary:focus-visible {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.site-footer {
  background: var(--charcoal);
  color: #f0f0f0;
  padding: 2.5rem 0 1.5rem;
}

.site-footer a {
  color: var(--brand-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  margin: 0 0 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.95rem;
}

.footer-legal-links p {
  margin: 0;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal-links a:hover {
  color: var(--brand-orange);
}

/* Cookie consent banner - darker palette, WCAG AA contrast */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f0f0f;
  color: #b5b5b5;
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 1px solid #1a1a1a;
}

.cookie-consent-banner.visible {
  transform: translateY(0);
}

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

.cookie-consent-inner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #b5b5b5;
}

.cookie-consent-inner p a {
  color: #c9c9c9;
}

.cookie-consent-inner p a:hover {
  color: #e0e0e0;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-consent-link {
  color: #9a9a9a !important;
  border-color: #4a4a4a;
  background: transparent;
}

.cookie-consent-link:hover {
  border-color: #5a5a5a;
  color: #b0b0b0 !important;
  background: rgba(255, 255, 255, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent-banner {
    transition: none;
  }
  .crm-modal,
  .crm-modal .modal-content,
  .newsletter-popup,
  .newsletter-popup-backdrop,
  .newsletter-popup-content,
  .newsletter-popup-close {
    transition: none !important;
  }
  .newsletter-popup.active .newsletter-popup-content {
    transition: none;
  }
}

/* Legal pages (Privacy, Terms, Cookie Policy) */
.legal-page {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page .legal-updated {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.list-inline li {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .compare-table tbody th {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .header-inner {
    grid-template-columns: 1fr;
  }

  .logo {
    justify-content: center;
  }

  .nav ul {
    justify-content: center;
  }

  .header-ctas {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .compare-table table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table th,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table thead {
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .compare-table tr {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  }

  .compare-table tbody th {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    background: #1c1c1c;
    color: #fff;
  }

  .compare-table td {
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

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

  .compare-table td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
  }

  .table-note {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .header-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--text);
  gap: 0.35rem;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-size: 1rem;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: 2px solid rgba(255, 45, 45, 0.25);
  border-color: var(--brand-red);
}

.small-print {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.small-print a {
  color: var(--brand-red);
}

.small-print a:hover {
  text-decoration: underline;
}

/* Two-Stage Form Styles */
.form-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
}

.form-stage.hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.form-error {
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem;
  background: #ffe8e8;
  border-radius: 8px;
  border: 1px solid rgba(255, 45, 45, 0.2);
  display: none;
}

.form-error:not(:empty) {
  display: block;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.form-actions .btn {
  flex: 1;
}

@media (max-width: 767px) {
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}

.submit-loading {
  display: inline-block;
}

.submit-loading.hidden,
.newsletter-submit-loading.hidden {
  display: none;
}

.submit-text.hidden,
.newsletter-submit-text.hidden {
  display: none;
}

.newsletter-submit-loading {
  display: inline-block;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* About Page Enhancements */

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 45, 45, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 45, 45, 0.2);
}

.stat-number {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cities Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

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

.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.city-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 45, 45, 0.15);
  border-color: var(--brand-red);
}

/* Pain Points Grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.pain-point-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pain-point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 45, 45, 0.15);
  border-color: var(--brand-red);
}

.pain-point-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.pain-point-card h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

.promise-text {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  text-align: center;
  color: var(--muted);
}

/* Feature Cards with Icons */
.feature-card {
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 45, 45, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h3 {
  margin-top: 0;
  color: var(--charcoal);
}

/* Process Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .process-timeline {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  
  .process-step {
    flex: 1;
    min-width: 0;
  }
  
  .process-connector {
    flex: 0 0 auto;
    width: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .process-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
    transform: translateY(-50%);
  }
  
  .process-connector::after {
    content: '→';
    position: relative;
    z-index: 1;
    color: var(--brand-red);
    font-size: 1.5rem;
    background: var(--smoke);
    padding: 0 0.5rem;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(255, 45, 45, 0.3);
  position: relative;
  z-index: 1;
}

.step-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.step-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 45, 45, 0.15);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.step-content h3 {
  margin-top: 0;
  color: var(--charcoal);
  font-size: 1.2rem;
}

.step-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-summary {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 2rem;
  font-style: italic;
}

/* Guarantee Section */
.guarantee {
  border: 2px solid #ffe3e3;
  border-radius: var(--radius);
  padding: 2rem;
  background: linear-gradient(135deg, #fff7f7, #ffffff);
  box-shadow: 0 12px 36px rgba(255, 45, 45, 0.1);
}

.guarantee-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guarantee-icon {
  font-size: 3rem;
}

.guarantee h2 {
  margin: 0;
}

.promise-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.promise-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffe8e8;
  color: var(--brand-red);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Trust Indicators in CTA */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments for about page */
@media (max-width: 767px) {
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pain-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .process-connector {
    display: none;
  }
  
  .process-timeline {
    flex-direction: column;
  }
  
  .guarantee-header {
    flex-direction: column;
    text-align: center;
  }
}

/* Creative Section Enhancements for index.php */

/* What We Do Section - Creative List Design */
.what-we-do-supporting-line {
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.what-we-do-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .what-we-do-wrapper {
    grid-template-columns: 1fr auto 350px;
    align-items: stretch;
    gap: 2rem;
  }
}

.what-we-do-creative-list {
  max-width: 750px;
}

@media (min-width: 992px) {
  .what-we-do-creative-list {
    max-width: none;
  }
}

.what-we-do-image-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.what-we-do-image-column img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  object-fit: cover;
}

.what-we-do-image-caption {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

@media (min-width: 992px) {
  .what-we-do-image-column img {
    width: 300px;
  }
}

.what-we-do-visual-column {
  display: none;
}

@media (min-width: 992px) {
  .what-we-do-visual-column {
    display: block;
    align-self: stretch;
  }
}

.what-we-do-visual-content {
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.05), rgba(255, 107, 53, 0.05));
  border: 1px solid rgba(255, 45, 45, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 100px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}

.what-we-do-visual-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.08), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.what-we-do-visual-icon-large {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(255, 45, 45, 0.2));
}

.what-we-do-visual-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.what-we-do-stat-item {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(255, 45, 45, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.what-we-do-stat-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(255, 45, 45, 0.15);
}

.what-we-do-stat-number {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 0.2rem;
  font-weight: 800;
}

.what-we-do-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.what-we-do-visual-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
  opacity: 0.6;
}

.what-we-do-creative-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  position: relative;
  align-items: flex-start;
}

.what-we-do-creative-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3rem;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-red), transparent);
  opacity: 0.2;
}

.what-we-do-creative-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(255, 107, 53, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 200ms ease, background 200ms ease;
  position: relative;
}

.what-we-do-creative-item:hover .what-we-do-creative-icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.15), rgba(255, 107, 53, 0.15));
}

.what-we-do-creative-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--brand-red);
  opacity: 0;
  transition: opacity 200ms ease;
}

.what-we-do-creative-item:hover .what-we-do-creative-icon-wrapper::before {
  opacity: 0.2;
}

.what-we-do-creative-icon {
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
}

.what-we-do-creative-content {
  flex: 1;
  padding-top: 0.25rem;
}

.what-we-do-creative-content h3 {
  margin: 0 0 0.5rem;
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 700;
}

.what-we-do-creative-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.what-we-do-cta-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.what-we-do-cta-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 200ms ease;
  letter-spacing: 0.01em;
}

.what-we-do-cta-btn:hover {
  background: var(--brand-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 45, 45, 0.25);
}

/* Responsive adjustments for what we do creative */
@media (max-width: 767px) {
  .what-we-do-supporting-line {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .what-we-do-creative-item {
    gap: 1.25rem;
    padding: 1.5rem 0;
  }
  
  .what-we-do-creative-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .what-we-do-creative-icon {
    font-size: 1.5rem;
  }
  
  .what-we-do-creative-item:not(:last-child)::after {
    left: 2.5rem;
  }
}

/* Why Choose Us Section */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.why-choose-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-red), var(--brand-orange));
  transition: width 200ms ease;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 45, 45, 0.2);
  border-color: var(--brand-red);
}

.why-choose-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.why-choose-icon-bg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(255, 45, 45, 0.3);
}

.why-choose-icon {
  font-size: 2rem;
}

.why-choose-card h3 {
  margin-top: 0;
  color: var(--charcoal);
  font-size: 1.3rem;
}

.why-choose-stat {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  background: #ffe8e8;
  color: var(--brand-red);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Problems We Help Solve Section */
.problems-three-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

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

.problems-column {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.problems-column h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-size: 1.3rem;
  font-family: 'Bebas Neue', 'League Spartan', sans-serif;
  letter-spacing: 0.02em;
  text-align: center;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-red);
}

.problems-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.problems-list li {
  padding: 0.5rem 0.75rem;
  background: var(--smoke);
  border-radius: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 150ms ease, background 150ms ease;
  position: relative;
  padding-left: 1.75rem;
}

.problems-list li::before {
  content: '✓';
  position: absolute;
  left: 0.5rem;
  color: var(--brand-red);
  font-weight: 800;
  font-size: 0.9rem;
}

.problems-list li:hover {
  transform: translateX(4px);
  background: #ffe8e8;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-red);
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.problem-card-1::before { background: var(--brand-red); }
.problem-card-2::before { background: var(--brand-orange); }
.problem-card-3::before { background: #ff6b35; }
.problem-card-4::before { background: var(--brand-red); }
.problem-card-5::before { background: var(--brand-orange); }
.problem-card-6::before { background: #ff6b35; }

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 45, 45, 0.15);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.problem-card h3 {
  margin-top: 0;
  color: var(--charcoal);
  font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .how-it-works-timeline {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  
  .how-it-works-connector {
    flex: 0 0 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .how-it-works-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
    transform: translateY(-50%);
  }
  
  .how-it-works-connector::after {
    content: '→';
    position: relative;
    z-index: 1;
    color: var(--brand-red);
    font-size: 2rem;
    background: #fff;
    padding: 0 0.5rem;
    font-weight: 800;
  }
}

.how-it-works-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.how-it-works-number {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(255, 45, 45, 0.3);
  position: relative;
  z-index: 1;
}

.how-it-works-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.how-it-works-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 45, 45, 0.15);
}

.how-it-works-step-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.how-it-works-content h3 {
  margin-top: 0;
  color: var(--charcoal);
  font-size: 1.2rem;
}

/* Homes Purchased Section */
.homes-purchased-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

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

.home-purchased-card {
  background: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 250px;
  overflow: hidden;
}

.home-purchased-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  z-index: 0;
}

.home-card-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.home-card-caption {
  margin: 0 0 0.5rem;
  color: #fff !important;
  font-size: 1.3rem;
  font-weight: 700;
}

.home-card-description {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
}

.home-purchased-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 45, 45, 0.15);
}

.home-location-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--brand-red);
}

.home-purchased-card h3 {
  margin-top: 0;
  color: var(--charcoal);
  font-size: 1.2rem;
}

.home-purchased-card .home-card-caption {
  color: #fff !important;
}

.home-timeline-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(255, 107, 53, 0.1));
  color: var(--brand-red);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Situations Section */
.situations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.situation-card {
  background: linear-gradient(135deg, #fff, #f9f9f9);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.situation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 45, 45, 0.2);
  border-color: var(--brand-red);
}

.situation-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(255, 45, 45, 0.3);
}

.situation-icon {
  font-size: 2.5rem;
}

.situation-card h3 {
  margin-top: 0;
  color: var(--charcoal);
  font-size: 1.3rem;
}

.situation-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease;
}

.situation-cta:hover {
  transform: translateX(4px);
  color: var(--brand-orange);
}

/* What We Buy Section */
.what-we-buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

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

.what-we-buy-badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.what-we-buy-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 45, 45, 0.15);
  border-color: var(--brand-red);
}

.what-we-buy-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.what-we-buy-badge span {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

/* Enhanced Guarantee Section */
.guarantee-enhanced {
  border: 2px solid #ffe3e3;
  border-radius: var(--radius);
  padding: 2.5rem;
  background: linear-gradient(135deg, #fff7f7, #ffffff);
  box-shadow: 0 12px 36px rgba(255, 45, 45, 0.1);
  text-align: center;
}

.guarantee-badge-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guarantee-shield {
  font-size: 3rem;
}

.guarantee-enhanced h2 {
  margin: 0;
  color: var(--charcoal);
}

.guarantee-enhanced h3 {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.2rem;
}

.guarantee-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .guarantee-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ffe3e3;
}

.guarantee-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.guarantee-item span {
  font-weight: 600;
  color: var(--text);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 45, 45, 0.2);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(255, 45, 45, 0.3);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-role-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: #ffe8e8;
  color: var(--brand-red);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.team-card h3 {
  margin-top: 0;
  color: var(--charcoal);
  font-size: 1.3rem;
}

/* About Enhanced Section */
.about-enhanced {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

.about-icon-large {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(255, 107, 53, 0.1));
  color: var(--brand-red);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 45, 45, 0.2);
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  margin-top: 0;
}

.about-content-text {
  text-align: left;
}

.about-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.about-content li {
  margin-bottom: 0.5rem;
}

.about-content-cta {
  margin-top: 2rem;
}

.visit-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.visit-image {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

.visit-image img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 200ms ease;
  display: block;
  margin: 0 auto;
}

.visit-image:hover img {
  transform: scale(1.02);
}

.visit-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .visit-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  max-width: fit-content;
}

.visit-info h3 {
  margin: 0 0 1.25rem;
  color: var(--charcoal);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: left;
}

.visit-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visit-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--smoke);
}

.visit-info-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.visit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 50%;
}

.visit-info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.visit-info-content strong {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.visit-info-content p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.visit-info-content p a {
  color: var(--text);
  text-decoration: none;
  transition: color 200ms ease;
}

.visit-info-content p a:hover {
  color: var(--brand-red);
  text-decoration: underline;
}

.visit-hours-compact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.visit-hours-compact span {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.visit-info-content a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.visit-info-content a:hover {
  text-decoration: underline;
}

.social-media-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.social-media-section h3 {
  margin: 0 0 1.5rem;
  color: var(--charcoal);
  font-size: 1.3rem;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--smoke);
  transition: transform 200ms ease, background 200ms ease;
  text-decoration: none;
  overflow: hidden;
}

.social-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.social-icon:hover {
  transform: translateY(-4px);
  background: #ffe8e8;
}

/* Responsive adjustments for creative sections */
@media (max-width: 767px) {
  .how-it-works-connector {
    display: none;
  }
  
  .how-it-works-timeline {
    flex-direction: column;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .homes-purchased-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .situations-grid {
    grid-template-columns: 1fr;
  }
  
  .what-we-buy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guarantee-list {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .about-enhanced {
    grid-template-columns: 1fr;
  }
}

/* Expandable Cards */
.card-expandable {
  position: relative;
}

.card-content-short {
  display: block;
}

.card-content-full {
  display: none;
  margin-top: 0.75rem;
}

.card-expandable.expanded .card-content-short {
  display: none;
}

.card-expandable.expanded .card-content-full {
  display: block;
}

.card-toggle {
  margin-top: 0.75rem;
  padding: 0.5rem 0;
  color: var(--brand-red);
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 0.95rem;
  text-align: left;
  transition: color 150ms ease;
}

.card-toggle:hover {
  color: var(--brand-red-dark);
  text-decoration: underline;
}

.card-toggle::after {
  content: ' →';
  transition: transform 150ms ease;
}

.card-expandable.expanded .card-toggle::after {
  transform: rotate(90deg);
}

/* Sequential Flow Arrows for Card Grids */
.card-grid.sequential-flow,
.card-grid.sequential-flow-5 {
  position: relative;
}

.card-grid.sequential-flow .card,
.card-grid.sequential-flow-5 .card {
  position: relative;
}

/* Horizontal arrows after cards in same row (except last in row) */
@media (min-width: 768px) {
  .card-grid.sequential-flow .card:nth-child(3n+1)::after,
  .card-grid.sequential-flow .card:nth-child(3n+2)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--brand-red);
    font-weight: 800;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
  }
  
  /* Remove right arrow from card 3 since it's last in row */
  .card-grid.sequential-flow .card:nth-child(3)::after {
    display: none;
  }
  
  /* For 5-card layout (What Happens After You Accept) */
  .card-grid.sequential-flow-5 .card:nth-child(1)::after,
  .card-grid.sequential-flow-5 .card:nth-child(2)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--brand-red);
    font-weight: 800;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
  }
  
  .card-grid.sequential-flow-5 .card:nth-child(3)::before {
    display: none;
  }
  
  /* Remove right arrow from card 3 since it's last in row */
  .card-grid.sequential-flow-5 .card:nth-child(3)::after {
    display: none;
  }
  
  .card-grid.sequential-flow-5 .card:nth-child(4)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--brand-red);
    font-weight: 800;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
  }
}

@media (max-width: 767px) {
  .card-grid.sequential-flow .card::after,
  .card-grid.sequential-flow .card::before,
  .card-grid.sequential-flow-5 .card::after,
  .card-grid.sequential-flow-5 .card::before {
    display: none !important;
  }
}

/* Newsletter Popup Styles */
.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.newsletter-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.newsletter-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.newsletter-popup-content {
  position: relative;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  padding: 2rem;
}

.newsletter-popup.active .newsletter-popup-content {
  transform: scale(1) translateY(0);
}

.newsletter-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 10;
}

.newsletter-popup-close:hover,
.newsletter-popup-close:focus-visible {
  color: var(--brand-red);
  background: var(--smoke);
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

.newsletter-popup-inner {
  text-align: center;
}

.newsletter-popup-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.newsletter-popup-message {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-popup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-popup-form input[type="email"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: var(--panel);
}

.newsletter-popup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand-red);
}

.newsletter-popup-form input[type="email"]::placeholder {
  color: var(--muted);
}

.newsletter-popup-form .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .newsletter-popup-content {
    width: 95%;
    padding: 1.5rem;
  }

  .newsletter-popup-inner h2 {
    font-size: 1.75rem;
  }

  .newsletter-popup-message {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .newsletter-popup-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.75rem;
  }
}

/* Mobile Hamburger Menu */
.hamburger-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 0.375rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 10;
  position: relative;
}

.hamburger-line {
  width: 1.5rem;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu-btn:hover .hamburger-line,
.hamburger-menu-btn:focus-visible .hamburger-line {
  background: var(--brand-orange);
}

.hamburger-menu-btn:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.hamburger-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.hamburger-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

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

.logo-mobile {
  display: none;
}

/* Mobile Menu Overlay (slides from right) */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: rgba(28, 28, 28, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  z-index: 2001;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  background: rgba(28, 28, 28, 0.98);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #f4f4f4;
  cursor: pointer;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  color: var(--brand-orange);
  background: rgba(255, 255, 255, 0.1);
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

.mobile-nav {
  flex: 1;
  padding: 1.5rem 1rem;
  min-height: 0;
  display: block;
  visibility: visible;
  overflow-y: auto;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 1rem;
  color: #f4f4f4 !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--brand-orange);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-ctas {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  visibility: visible;
  flex-shrink: 0;
}

.mobile-menu-ctas .btn {
  width: 100%;
  text-align: center;
}

/* Mobile Only Styles */
@media (max-width: 767px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    min-width: 0;
  }

  .hamburger-menu-btn,
  .header-cta-mobile,
  .logo-mobile {
    display: flex;
  }

  .logo,
  .nav,
  .header-ctas {
    display: none;
  }

  .header-cta-mobile {
    justify-content: center;
    align-items: center;
    min-width: 0;
    overflow: hidden;
  }

  .header-cta-mobile .btn {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    white-space: nowrap;
    max-width: 100%;
  }

  .logo-mobile {
    min-width: 0;
    flex-shrink: 0;
  }

  .logo-mobile .logo-image {
    height: 36px;
    width: auto;
  }

  .container {
    overflow-x: hidden;
  }
}

  /* =========================
     Swifty Shorts Carousel CSS
     Prefix: srvc-
     ========================= */

     .srvc-carousel {
      --srvc-gap: 22px;
      --srvc-radius: 18px;
  
      /* Center "short" size (9:16). Tweak per your layout. */
      --srvc-center-w: min(420px, 64vw);
      --srvc-center-h: calc(var(--srvc-center-w) * 16 / 9);
  
      /* Side previews */
      --srvc-side-scale: 0.82;
      --srvc-side-opacity: 0.55;
  
      /* Theme-ish */
      --srvc-bg: transparent;
      --srvc-nav-bg: rgba(255,255,255,0.06);
      --srvc-nav-border: rgba(255,255,255,0.18);
      --srvc-shadow: 0 14px 45px rgba(0,0,0,0.35);
  
      background: #fff;
      color: inherit;
    }
  
    .srvc-carousel__shell {
      width: min(1200px, 100%);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 52px 1fr 52px;
      align-items: center;
      gap: 10px;
    }
  
    .srvc-carousel__nav {
      height: 52px;
      width: 52px;
      border-radius: 999px;
      border: 1px solid var(--srvc-nav-border);
      background: var(--srvc-nav-bg);
      color: currentColor;
      font-size: 34px;
      line-height: 1;
      cursor: pointer;
      user-select: none;
    }
    .srvc-carousel__nav:active { transform: scale(0.98); }
  
    .srvc-carousel__stage {
      position: relative;
      height: calc(var(--srvc-center-h) + 20px);
      display: grid;
      place-items: center;
      overflow: hidden;
      border-radius: 26px;
  
      /* subtle backdrop; safe to remove */
      background: radial-gradient(1200px 500px at 50% 30%, rgba(255,255,255,0.08), transparent);
      touch-action: pan-y;
    }
  
    .srvc-carousel__track {
      display: flex;
      align-items: center;
      gap: var(--srvc-gap);
      will-change: transform;
      transition: transform 360ms cubic-bezier(.2,.8,.2,1);
      padding: 10px;
    }
  
    .srvc-carousel__slide {
      width: var(--srvc-center-w);
      height: var(--srvc-center-h);
      border-radius: var(--srvc-radius);
      overflow: hidden;
      position: relative;
      flex: 0 0 auto;
      background: #111;
      box-shadow: var(--srvc-shadow);
      transform-origin: center;
      transition: transform 360ms cubic-bezier(.2,.8,.2,1), opacity 360ms cubic-bezier(.2,.8,.2,1);
    }
  
    .srvc-carousel__slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      background: #000;
    }
  
    .srvc-carousel__slide::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(to top, rgba(0,0,0,0.42), transparent 40%);
    }
  
    .srvc-carousel__slide.is-prev,
    .srvc-carousel__slide.is-next {
      transform: scale(var(--srvc-side-scale));
      opacity: var(--srvc-side-opacity);
      filter: saturate(0.9);
      cursor: pointer;
    }
  
    .srvc-carousel__slide.is-active {
      transform: scale(1);
      opacity: 1;
    }
  
    .srvc-carousel__meta {
      margin-top: 10px;
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      font-size: 14px;
      opacity: 0.8;
    }
  
    .srvc-carousel__hint {
      font-size: 12px;
      opacity: 0.8;
    }
  
    @media (max-width: 700px) {
      .srvc-carousel__shell { grid-template-columns: 1fr; }
      .srvc-carousel__nav { display: none; }
      .srvc-carousel {
        --srvc-center-w: min(92vw, 420px);
      }
      .srvc-carousel__stage {
        height: calc(var(--srvc-center-h) + 10px);
      }
    }

    /* =========================
       Reviews Carousel CSS
       Continuous rotating carousel
       ========================= */

    .reviews-carousel-section {
      background: var(--smoke);
      padding: 3rem 0;
      overflow: hidden;
      width: 100%;
    }

    .reviews-carousel-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 1rem 0;
      max-width: none;
    }

    .reviews-carousel-track {
      display: flex;
      gap: 2rem;
      animation: scroll-reviews 20s linear infinite;
      will-change: transform;
    }

    .reviews-carousel-track:hover {
      animation-play-state: paused;
    }

    @keyframes scroll-reviews {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .review-card {
      flex: 0 0 auto;
      width: 320px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: transform 200ms ease, box-shadow 200ms ease;
    }

    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(255, 45, 45, 0.15);
    }

    .review-stars {
      color: #ffc107;
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
      letter-spacing: 2px;
    }

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

    .review-author {
      font-size: 0.9rem;
      color: var(--muted);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .review-card {
        width: 280px;
        padding: 1.25rem;
      }

      .reviews-carousel-track {
        gap: 1.5rem;
      }
    }

/* =========================
   CRM Modal Styles
   ========================= */

.crm-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.crm-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover,
.modal-close:focus {
  background: var(--smoke);
  color: var(--text);
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.modal-content .section-lead {
  margin-bottom: 1rem;
  color: var(--muted);
}

.modal-content .small-print {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

/* Honeypot Field Styles */
.honeypot {
  display: none !important;
  visibility: hidden !important;
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .modal-content {
    padding: 1.5rem;
    max-height: 95vh;
  }
  
  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}