/* =========================================================
   CAPPA CLEAN - FINAL CLEANED CSS
   Source reviewed from your current file upload.
   Goal:
   - Keep working styles
   - Remove literal duplicates / junk / invalid CSS only
   - Preserve section notes and add a few helper notes
   - Do NOT rewrite the site styling direction
   ========================================================= */

/* =========================================================
   IMPORTANT NOTES
   ---------------------------------------------------------
   1) This file consolidates duplicate blocks that were fighting
      each other, especially:
      - Results / arrows
      - Feature section mobile
      - Hero mobile
      - Shop type card alignment
   2) The invalid nested CSS inside:
         .hero-text-wrap .wp-block-buttons { ... }
      has been repaired into valid plain CSS.
   3) Mobile arrow visibility for Section 5 is left as it exists
      in your current file: hidden on mobile, visible on desktop.
   4) Keep your backup just in case before repasting this.
   ========================================================= */


/* =========================
   RESULTS SECTION
   Section 5 / Homes Slider
   ========================= */

.results-section {
  width: min(1260px, 92vw);
  margin: 0 auto;
  overflow: visible;
  padding-left: 0 !important;
}

.results-section h2 {
  max-width: 760px;
}

.results-section p {
  max-width: 620px;
}

/* Heading alignment for Section 5 */
.section-5-eyebrow,
.section-5-heading,
.section-5-intro {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}

.section-5-heading {
  max-width: 700px;
  margin-bottom: 40px !important;
}

.section-5-intro {
  max-width: 560px;
}

/* Align Section 5 heading and arrows with first card */
.results-section .section-5-eyebrow,
.results-section .section-5-heading,
.results-section .section-5-intro {
  transform: translateX(1px);
}


/* =========================
   CAROUSEL TRACK
   ========================= */

.results-carousel {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start !important;
  align-items: stretch;
  padding-bottom: 8px;
  padding-right: 220px;
  box-sizing: content-box;
  margin-top: 28px;
  scrollbar-width: none;

  /* extend track to right edge */
  width: calc(100% + (50vw - 50%));
  margin-right: calc(50% - 50vw);
}

.results-carousel::-webkit-scrollbar {
  display: none;
}

/* Each card column */
.results-carousel > .wp-block-column {
  flex: 0 0 540px !important;
  min-width: 540px !important;
  max-width: 540px !important;
  margin: 0 !important;
  scroll-snap-align: start;
}


/* =========================
   HOVER CARD
   ========================= */

.hover-result-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  width: 100%;
}

.hover-result-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 400px;
}

.hover-result-image-wrap figure,
.hover-result-image-wrap .wp-block-image,
.hover-result-image-wrap img {
  margin: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hover-result-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hover-result-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(
    to top,
    rgba(39, 108, 167, 0.88) 0%,
    rgba(39, 108, 167, 0.62) 38%,
    rgba(39, 108, 167, 0.28) 68%,
    rgba(39, 108, 167, 0.00) 100%
  );
}

.hover-result-title {
  color: #ffffff;
  margin: 0 0 8px 0;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.hover-result-text {
  color: #ffffff;
  margin: 0;
  opacity: 0.95;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.hover-result-card:hover .hover-result-overlay {
  opacity: 1;
}

.hover-result-card:hover .hover-result-image-wrap img {
  transform: scale(1.05);
}

.hover-result-card:hover .hover-result-title,
.hover-result-card:hover .hover-result-text {
  transform: translateY(0);
}


/* =========================
   ARROW CONTROLS
   Consolidated from duplicate blocks
   ========================= */

.results-controls {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center;
  gap: 14px;
  width: fit-content !important;
  margin-top: 24px !important;
  margin-left: -60px !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  transform: translateX(60px);
}

.results-controls .wp-block-buttons,
.results-controls .wp-block-group,
.results-controls .wp-block-columns {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center;
  gap: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: fit-content !important;
}

.results-controls .wp-block-button {
  margin: 0 !important;
}

.results-prev,
.results-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(20, 30, 60, 0.14);
  background: #ffffff;
  color: #1b2338;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.results-prev:hover,
.results-next:hover {
  transform: translateY(-1px);
  background: #f7f9fc;
  border-color: rgba(20, 30, 60, 0.22);
}

/* Round arrow buttons when using WordPress button links */
.results-controls .wp-block-button__link {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  background-image: none !important;
  border: 1px solid #e5e7eb !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  text-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease !important;
}

.results-controls .wp-block-button__link:hover {
  background: #ffffff !important;
  border-color: #d1d5db !important;
  color: #111827 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08) !important;
}

.results-controls .wp-block-button__link:active {
  transform: translateY(0) !important;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06) !important;
}

.results-controls .wp-block-button__link::after,
.results-controls .wp-block-button__link span {
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Draw clean arrows with CSS instead of font glyphs */
.results-prev .wp-block-button__link::before,
.results-next .wp-block-button__link::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-top: 2px solid #111827;
  border-right: 2px solid #111827;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.results-prev .wp-block-button__link::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.results-next .wp-block-button__link::before {
  transform: translate(-60%, -50%) rotate(45deg);
}


/* =========================
   RESULTS SECTION MOBILE
   Current behavior preserved:
   - swipe enabled
   - arrows hidden
   ========================= */

@media (max-width: 900px) {
  .results-section {
    width: min(100%, 94vw);
    overflow: hidden;
  }

  .results-carousel {
    gap: 16px;
    padding-bottom: 4px;
    padding-right: 20px;
    width: 100%;
    margin-right: 0;
  }

  .results-carousel > .wp-block-column {
    flex: 0 0 86vw !important;
    min-width: 86vw !important;
    max-width: 86vw !important;
  }

  .hover-result-image-wrap,
  .hover-result-image-wrap img {
    min-height: 300px;
    height: 300px;
  }

  .results-controls {
    display: none !important;
  }
}


/* =========================
   SECTION 2 / REUSABLE FEATURE SECTION SPACING FIX
   Desktop / base structure
   ========================= */

.feature-section > .wp-block-columns {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
}

.feature-text-col {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

.feature-image-col {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

.feature-text-col > .wp-block-group,
.feature-text-col > .text-block,
.feature-text-col > .wp-block-group.is-layout-constrained {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.feature-text-col h2,
.feature-text-col p,
.feature-text-col .wp-block-heading {
  max-width: none !important;
}

.feature-image-col .wp-block-image,
.feature-image-col img {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.feature-image-col img {
  display: block !important;
}


/* =========================
   CARD IMAGE / SHOP TYPE CARDS
   Consolidated duplicate card rules
   ========================= */

.card-image {
  overflow: hidden;
  display: block;
  border-radius: 8px; /* optional but helps clipping */
}

.card-image img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card-image:hover img {
  transform: scale(1.10);
}

.shop-type-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left !important;
  align-items: flex-start !important;
}

.shop-type-card h3,
.shop-type-card p,
.shop-type-card a {
  text-align: left !important;
}

.shop-type-card .wp-block-heading,
.shop-type-card .wp-block-paragraph,
.shop-type-card .shop-type-card-title,
.shop-type-card .shop-type-card-text,
.shop-type-card .shop-type-card-link {
  text-align: left !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  align-self: stretch !important;
}

.shop-type-card-title {
  margin-top: 22px !important;
  margin-bottom: 10px !important;
  line-height: 1.18;
}

.shop-type-card-text {
  margin-top: 22px !important;
  margin-bottom: 12px !important;
  line-height: 1.45;
}

.shop-type-card-link {
  margin-top: auto !important;
  margin-bottom: 14px !important;
}

.shop-type-card .card-image {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.shop-type-card .card-image img {
  display: block;
  width: 100% !important;
  max-width: none !important;
}

.shop-type-card .shop-type-card-link a {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  text-align: left !important;
}

.shop-type-card-link::after {
  content: "→";
  display: inline-block;
  margin-left: 6px;
  font-size: 1.2em;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-type-card-link:hover::after {
  transform: translateX(8px);
}

.shop-types-heading {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px !important;
}

.shop-types-intro {
  max-width: 700px;
  margin: 0 auto 60px auto !important;
  line-height: 1.5;
}

.shop-types-row {
  gap: 34px !important;
  margin-bottom: 34px !important;
  transform: translateX(0);
}


/* =========================
   HERO DESKTOP / BASE
   Repaired invalid nested CSS
   ========================= */

.hero-text-wrap {
  max-width: 520px;
  margin-left: 200px;
}

.hero-image img {
  width: 100% !important;
  max-width: none !important;
}

.hero-text-wrap .wp-block-buttons {
  display: flex;
  gap: 16px;
}

.hero-text-wrap .wp-block-button {
  width: auto !important;
}

.hero-text-wrap .wp-block-button__link {
  width: auto !important;
  padding: 14px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.hero-text-wrap .wp-block-button__link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.hero-text-wrap .wp-block-button__link:active {
  transform: scale(1.02);
}

.hero-text-wrap .wp-block-group {
  margin-left: 0 !important;
}

.hero-slider-wrap {
  margin-left: 165px !important;
  max-width: 520px;
  margin-top: -20px;
}

/* If Smart Slider needs desktop offset, keep it valid here */
.hero-review-slider,
.hero-review-slider > div,
.hero-review-slider .n2-ss-slider,
.hero-review-slider .n2-ss-slider-wrapper-outside {
  position: relative !important;
}


/* =========================
   SECTION 7 - CLEANING LEVELS
   ========================= */

.cleaning-levels-section {
  max-width: 1180px;
  margin: 0 auto;
}

.cleaning-levels-row {
  gap: 28px !important;
}

.cleaning-levels-row > .wp-block-column {
  display: flex;
}

.cleaning-level-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(20, 30, 60, 0.08);
  padding: 28px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: left !important;
}

.cleaning-level-card h2,
.cleaning-level-card h3,
.cleaning-level-card p,
.cleaning-level-card li {
  text-align: left !important;
}

.cleaning-level-image {
  width: 100% !important;
  margin: 16px 0 18px 0 !important;
  overflow: hidden;
  border-radius: 14px;
}

.cleaning-level-image img {
  width: 100% !important;
  height: 190px;
  object-fit: cover;
  display: block;
}

.cleaning-level-card ul {
  margin-top: 10px;
  margin-bottom: 18px;
  padding-left: 20px;
}

.cleaning-level-card li {
  margin-bottom: 8px;
  line-height: 1.45;
}

.cleaning-level-button {
  margin-top: auto;
}

.cleaning-level-button .wp-block-button__link {
  width: 100%;
  border-radius: 10px;
  font-weight: 700;
  padding: 14px 18px;
  text-align: center;
}

.cleaning-levels-intro {
  max-width: 680px;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.5;
}

.cleaning-level-card h2 {
  margin-bottom: 12px;
}

.cleaning-card-bottom {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.cleaning-card-bottom .cleaning-level-button {
  margin-top: auto !important;
}

.cleaning-level-top {
  min-height: 0;
}

.cleaning-card-bottom h2 {
  min-height: 20px;
  margin-bottom: 8px;
}


/* =========================
   FAQ SECTION
   ========================= */

.faq-section {
  padding-bottom: 60px;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion .wp-block-accordion-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
}

.faq-accordion .wp-block-accordion-heading {
  font-weight: 600;
  font-size: 18px;
  color: #2d3748;
}

.faq-accordion .wp-block-accordion-panel {
  padding-top: 10px;
  color: #4a5568;
  line-height: 1.6;
}

.faq-accordion .wp-block-accordion-heading:hover {
  color: #276CA7;
  cursor: pointer;
}


/* =========================
   FINAL CTA SECTION
   ========================= */

.home-cta-section {
  background: #EEEEEE;
  padding: 140px 20px 90px;
  margin-top: 120px;
  position: relative;
}

.home-cta-wrap {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.home-cta-card {
  max-width: 960px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(20, 30, 60, 0.10);
  padding: 56px 32px 52px;
  text-align: center;
  position: relative;
  top: -270px;
}

.home-cta-eyebrow {
  color: #276CA7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.home-cta-heading {
  max-width: 760px;
  margin: 0 auto 26px;
}

.home-cta-button {
  justify-content: center;
}

.home-cta-button .wp-block-button__link {
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  will-change: transform;
}

.home-cta-button .wp-block-button__link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(20, 30, 60, 0.16);
  filter: brightness(1.02);
}

.home-cta-button .wp-block-button__link:active {
  transform: translateY(0) scale(1.02);
  box-shadow: 0 4px 10px rgba(20, 30, 60, 0.10);
}


/* =========================
   PRICING PAGE
   ========================= */

/* Hide recurring prices by default */
.pricing-set-recurring {
  display: none;
}

/* Toggle */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin: 30px 0 56px;
}

.pricing-toggle .wp-block-buttons {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  justify-content: center;
}

.pricing-toggle-btn .wp-block-button__link {
  background: transparent !important;
  color: #222 !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.2s ease, filter 0.2s ease, background-color 0.25s ease;
}

.pricing-toggle-btn .wp-block-button__link:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.pricing-toggle-active .wp-block-button__link {
  background: #222;
  color: #fff !important;
  transform: scale(1.02);
}

.pricing-toggle-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #60dfd7 0%, #b497ff 100%);
  transition: left 0.32s ease, width 0.32s ease;
  z-index: 0;
}

.pricing-toggle-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-toggle-note {
  display: inline-block;
  margin: 0;
  padding: 8px 12px;
  background: #eef3ff;
  color: #3d68b3;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 8px;
  white-space: nowrap;
}

/* Row + columns */
.pricing-card-row,
.pricing-card-row.is-layout-flex {
  gap: 6px !important;
}

.pricing-card-row .wp-block-column {
  display: flex;
}

/* Card */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 28px;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  background: #fff;
}

/* Inner content */
.pricing-card-content {
  flex: 1;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.pricing-card-content > * {
  margin-bottom: 14px;
}

.pricing-card-content > *:last-child {
  margin-bottom: 0;
}

/* Featured card */
.pricing-card-featured {
  position: relative;
  border: 2px solid #5b78b8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  overflow: visible;
  z-index: 2;
  padding-top: 42px !important;
  margin-top: -39px !important;
  padding-bottom: 69px;
}

/* Ribbon */
.pricing-card-ribbon {
  position: absolute;
  top: 0;
  left: -2px;
  right: -2px;
  margin: 0 !important;
  background: #5b78b8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
  border-radius: 16px 16px 0 0;
  z-index: 5;
}

/* Text */
.pricing-card-title {
  margin-top: 0 !important;
}

.pricing-card h2 {
  font-weight: 600;
  letter-spacing: -0.2px;
}

.pricing-card-price {
  font-size: 42px;
  font-weight: 700;
  margin-top: 0 !important;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pricing-card-starting {
  font-size: 13px;
  color: #8a8a8a;
  font-weight: 400;
  margin-bottom: -6px !important;
  line-height: 1 !important;
}

.pricing-card-subtext {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-align: left;
  max-width: 220px;
  margin: 0 auto 12px;
}

.pricing-card ul {
  font-weight: 400;
  color: #444;
}

.pricing-card-featured .pricing-card-price {
  font-weight: 800;
}

/* Buttons */
.pricing-card-button {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.pricing-card-button .wp-block-button__link {
  background: #232323;
  color: #fff;
  border-radius: 10px;
  padding: 14px 26px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  min-width: 132px;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
}

.pricing-card-button .wp-block-button__link:hover {
  background: #3d68b3;
  color: #fff;
  transform: translateY(-1px);
}

.pricing-card-featured .pricing-card-button .wp-block-button__link {
  background: #3d68b3;
}

.pricing-card-featured .pricing-card-button .wp-block-button__link:hover {
  background: #2f5698;
}

/* Feature list */
.pricing-feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  line-height: 1.45;
}

.pricing-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #5b78b8;
  font-weight: 700;
  font-size: 15px;
}

/* Pricing buttons */
.pricing-btn .wp-block-button__link {
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.pricing-btn:not(.pricing-btn-primary) .wp-block-button__link {
  background: transparent !important;
  color: #222 !important;
  border: 2px solid #222;
}

.pricing-btn:not(.pricing-btn-primary):hover .wp-block-button__link {
  background: #222 !important;
  color: #fff !important;
}

.pricing-btn-primary .wp-block-button__link {
  background: #5b6fb8 !important;
  color: #fff !important;
  border: none;
}

.pricing-btn-primary:hover .wp-block-button__link {
  background: #4a5ea3 !important;
}


/* =========================
   PRICING SUPPORT / BLACK BLOCK SECTION
   ========================= */

.pricing-support-section {
  position: relative;
  overflow: hidden;
  background: #22253d;
  padding: 110px 24px 90px;
}

.pricing-support-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

/* left shape */
.pricing-support-section::before {
  content: "";
  position: absolute;
  left: -140px;
  top: 40px;
  width: 520px;
  height: 420px;
  background: rgba(255, 255, 255, 0.045);
  clip-path: polygon(0 18%, 82% 0, 100% 60%, 62% 100%, 10% 100%, 0 72%);
  z-index: 1;
}

/* right shape */
.pricing-support-section::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 80px;
  width: 700px;
  height: 420px;
  background: rgba(255, 255, 255, 0.04);
  clip-path: polygon(24% 0, 100% 22%, 100% 100%, 6% 100%, 0 52%);
  z-index: 1;
}

.pricing-support-section .wp-block-heading,
.pricing-support-section h2 {
  color: #fff;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.pricing-support-section p {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-support-section .pricing-support-eyebrow {
  color: #fff;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* logo and review area */
.pricing-support-reviews {
  position: relative;
  z-index: 2;
  margin-top: 56px;
}

.pricing-support-rating {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.8);
}

.pricing-support-rating .stars {
  color: #f5c451;
  font-size: 22px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  letter-spacing: 2px;
  transform: translateY(-1px);
}

.pricing-support-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.pricing-support-logo {
  color: rgba(255, 255, 255, 0.92);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}

.pricing-logo-google { font-weight: 600; }
.pricing-logo-yelp { font-weight: 700; }
.pricing-logo-zillow {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pricing-logo-airbnb { font-weight: 700; }


/* =========================
   BLOG CARD CONTENT / BUTTON UTILITIES
   ========================= */

.btn-compact .wp-block-button__link {
  padding: 10px 18px;
  font-size: 14px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  position: relative;
}

/* Target the arrow */
.btn-compact .wp-block-button__link::after {
  content: "→";
  display: inline-block;
  transition: transform 0.2s ease;
}

/* Hover animation */
.btn-compact .wp-block-button__link:hover::after {
  transform: translateX(6px);
}


/* =========================
   HEADER BUTTON / NAV / LOGO UTILITIES
   ========================= */

.btn-header .wp-block-button__link {
  padding: 10px 20px;
  font-size: 14.5px;
  border-radius: 10px;
  transition: all 0.2s ease;
  will-change: transform;
}

.btn-header .wp-block-button__link:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* navigation underline */
.nav-underline .wp-block-navigation-item__content {
  position: relative;
  text-decoration: none;
}

.nav-underline .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.25s ease;
}

.nav-underline .wp-block-navigation-item__content:hover::after {
  width: 100%;
}

.logo-hover img {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo-hover:hover img {
  transform: scale(1.05);
  opacity: 0.75;
}


/* =========================
   SECTION 1 FEATURE ROWS
   Desktop / tablet typography
   ========================= */

.feature-row .text-col h4,
.feature-row .text-col h5,
.feature-row .text-col h6 {
  font-size: 20px !important;
  line-height: 1.3 !important;
  margin: 0 0 4px 0 !important;
}

.feature-row .text-col p {
  font-size: 16px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* SECTION 1 DESKTOP ONLY - main title under eyebrow */
@media (min-width: 768px) {
  .feature-text-col .text-block h2 {
    font-size: 36px !important;
    line-height: 1.12 !important;
    max-width: 640px !important;
    margin: 0 0 18px 0 !important;
  }
}


/* =========================
   MOBILE FIXES
   ========================= */

@media (max-width: 767px) {

  /* Fix featured (Max Clean) card position */
  .pricing-card-featured {
    margin-top: 12px !important;
  }

  /* Add spacing before next card (Commercial) */
  .pricing-card-commercial {
    margin-top: 20px !important;
  }
}


/* =========================
   HERO SECTION MOBILE
   ========================= */

@media (max-width: 767px) {

  .hero-block > .wp-block-group > .wp-block-columns {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .hero-block .left-coll,
  .hero-block .right-coll,
  .hero-block .left-coll > .wp-block-group:first-child {
    display: contents !important;
  }

  /* Order */
  .hero-block .left-coll h1 { order: 1; }
  .hero-block .left-coll h2 { order: 2; }
  .hero-block .right-coll .wp-block-image,
  .hero-block .right-coll img { order: 3; }
  .hero-block .left-coll p { order: 4; }
  .hero-block .left-coll .wp-block-buttons { order: 5; }
  .hero-block .left-coll > .wp-block-group:last-child,
  .hero-block .smart-slider-3,
  .hero-block .n2-ss-slider { order: 6; }

  /* Full width */
  .hero-block .left-coll h1,
  .hero-block .left-coll h2,
  .hero-block .left-coll p,
  .hero-block .left-coll .wp-block-buttons,
  .hero-block .right-coll .wp-block-image,
  .hero-block .right-coll img,
  .hero-block .left-coll > .wp-block-group:last-child {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Hero wrapper spacing */
  .hero-block {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* Eyebrow */
  .hero-block .left-coll h1 {
    font-size: 15px !important;
    line-height: 1.2 !important;
    margin: 0 0 10px 0 !important;
    max-width: 220px !important;
  }

  /* Main heading */
  .hero-block .left-coll h2 {
    font-size: 31px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 14px 0 !important;
    max-width: 330px !important;
  }

  /* Body copy */
  .hero-block .left-coll p {
    font-size: 17px !important;
    line-height: 1.5 !important;
    margin: 0 0 18px 0 !important;
    max-width: 290px !important;
  }

  /* Image position */
  .hero-block .right-coll .wp-block-image {
    margin: 10px 0 16px 0 !important;
  }

  .hero-block .right-coll img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Buttons */
  .hero-block .left-coll .wp-block-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 22px 0 !important;
  }

  .hero-block .left-coll .wp-block-button {
    width: 100% !important;
    max-width: 330px !important;
  }

  .hero-block .left-coll .wp-block-button__link {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 14px 18px !important;
  }

  /* HERO REVIEW SLIDER FIX */
  .hero-slider-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 6px 0 0 0 !important;
    padding: 0 !important;
  }

  .hero-review-slider {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: scale(1.02);
    transform-origin: top center;
  }

  .hero-review-slider .n2-ss-slider,
  .hero-review-slider .n2-ss-slide {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hero-review-slider .n2-ss-slider .n2-ss-slide-inner,
  .hero-review-slider .n2-ss-slider .n2-ow,
  .hero-review-slider .n2-ss-slider .n2-ss-layer {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}


/* =========================
   SECTION 1 MOBILE LAYOUT
   Image first, text second
   Uses classes:
   - feature-section
   - feature-image-col
   - feature-text-col
   - text-block
   - feature-list
   - feature-row
   - text-col
   - feature-eyebrow
   NOTE:
   - Consolidated from several duplicate test blocks
   - This is the final active mobile version
   ========================= */

@media (max-width: 767px) {

  /* Main section stack */
  .feature-section .wp-block-columns {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* Image first, text second */
  .feature-image-col {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin: 0 0 -5px 0 !important;
  }

  .feature-text-col {
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin: 0 !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* Image sizing */
  .feature-image-col .wp-block-image,
  .feature-image-col img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
  }

  /* Slightly tighter overall section padding */
  .feature-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* Text wrapper */
  .feature-text-col .text-block {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
  }

  /* Eyebrow */
  .feature-eyebrow {
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
  }

  /* Main heading */
  .feature-text-col .text-block h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin: 0 0 14px 0 !important;
    max-width: none !important;
    text-align: left !important;
  }

  /* Space between feature groups */
  .feature-list > .wp-block-group {
    margin-bottom: 18px !important;
  }

  .feature-list > .wp-block-group:last-child {
    margin-bottom: 0 !important;
  }

  /* Final feature row layout */
  .feature-row {
    margin-bottom: 18px !important;
  }

  .feature-row .wp-block-group__inner-container,
  .feature-row > .wp-block-group__inner-container {
    display: block !important;
  }

  .feature-row .wp-block-row,
  .feature-row .is-layout-flex {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .feature-row .wp-block-icon {
    flex: 0 0 22px !important;
    width: 22px !important;
    margin-top: -3px !important;
  }

  .feature-row .wp-block-icon svg {
    width: 32px !important;
    height: 32px !important;
    display: block !important;
  }

  .feature-row .text-col {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .feature-row .text-col h4,
  .feature-row .text-col h5,
  .feature-row .text-col h6 {
    margin: 0 0 6px 0 !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
  }

  .feature-row .text-col p {
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
  }
}


/* =========================
   PRICING SUPPORT MOBILE
   ========================= */

@media (max-width: 900px) {
  .pricing-support-section {
    padding: 80px 20px 70px;
  }

  .pricing-support-section .wp-block-heading,
  .pricing-support-section h2 {
    font-size: 40px;
  }

  .pricing-support-section::before {
    left: -180px;
    top: 40px;
    width: 360px;
    height: 280px;
  }

  .pricing-support-section::after {
    right: -220px;
    top: 120px;
    width: 420px;
    height: 260px;
  }

  .pricing-support-reviews {
    margin-top: 42px;
  }

  .pricing-support-logos {
    gap: 24px 32px;
  }

  .pricing-support-logo {
    font-size: 24px;
  }

  .pricing-support-rating {
    font-size: 13px;
    line-height: 1.4;
  }
}
/* =========================
   BLOG HEADER MOBILE
   Wistia-style mobile layout
   Uses custom classes:
   - blog-bars
   - blog-meta-wrap
   - blog-category
   - blog-date
   - blog-share
   - blog-title
   - blog-dek
   - blog-featured-image
   - blog-author-wrap
   - blog-author-photo
   - blog-author-text
   - blog-author-name
   - blog-author-role
   ========================= */

@media (max-width: 767px) {

  .blog-bars {
    padding-left: 20px !important;
    padding-right: 20px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    column-gap: 16px !important;
    row-gap: 18px !important;
  }

  /* Flatten desktop structure on mobile */
  .blog-bars > .wp-block-columns,
  .blog-bars > .wp-block-columns > .wp-block-column,
  .blog-bars > .wp-block-columns > .wp-block-column > .wp-block-group {
    display: contents !important;
  }

  /* META WRAP */
  .blog-meta-wrap {
    display: contents !important;
  }

  .blog-category {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.08em !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: left !important;
    align-self: center !important;
  }

  .blog-share {
    grid-column: 2;
    grid-row: 1;
    margin: 0 !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .blog-share .wp-block-social-links {
    justify-content: flex-end !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  /* TITLE */
  .blog-title {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0 !important;
    text-align: left !important;
    font-size: 40px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    max-width: none !important;
  }

  /* DATE AFTER TITLE */
  .blog-date {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: -4px 0 0 0 !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    text-align: left !important;
  }

  /* DEK / EXCERPT */
  .blog-dek {
    grid-column: 1 / -1;
    grid-row: 4;
    margin: 0 0 8px 0 !important;
    text-align: left !important;
    font-size: 18px !important;
    line-height: 1.55 !important;
    max-width: none !important;
  }

  /* AUTHOR BEFORE IMAGE */
  .blog-author-wrap {
    grid-column: 1 / -1;
    grid-row: 5;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 10px 0 !important;
  }

  .blog-author-photo,
  .blog-author-photo img {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 999px !important;
    display: block !important;
    object-fit: cover !important;
    margin: 0 !important;
  }

  .blog-author-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
  }

  .blog-author-name {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    text-align: left !important;
  }

  .blog-author-role {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    text-align: left !important;
    opacity: 0.8;
  }

  /* IMAGE AFTER AUTHOR */
  .blog-featured-image {
    grid-column: 1 / -1;
    grid-row: 6;
    margin: 0 !important;
  }

  .blog-featured-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
  }
}
/* =========================
   BLOG END PROMO CARD - MOBILE
   Class used: blog-promo-card
   ========================= */

@media (max-width: 767px) {

  .blog-promo-card {
    overflow: hidden !important;
    border-radius: 24px !important;
  }

  .blog-promo-card .wp-block-media-text {
    align-items: stretch !important;
  }

  .blog-promo-card .wp-block-media-text__media {
    margin: 0 !important;
  }

  .blog-promo-card .wp-block-media-text__media img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }

  .blog-promo-card .wp-block-media-text__content {
    padding: 22px 20px 28px !important;
  }

  .blog-promo-card .wp-block-media-text__content > p:first-child {
    margin: 0 0 12px 0 !important;
  }

  .blog-promo-card .wp-block-media-text__content h3 {
    margin: 0 0 18px 0 !important;
    line-height: 1.18 !important;
  }

  .blog-promo-card .wp-block-buttons {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    justify-content: flex-start !important;
  }

  .blog-promo-card .wp-block-button {
    margin: 0 !important;
  }

  .blog-promo-card .wp-block-button__link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
} 