
.page .ast-container,
.site-content > .container,
.wp-block-group {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

:root,
  html[data-theme="dark"] {
    --bg-primary: #0a1120;
    --bg-secondary: #0f1729;
    --bg-tertiary: #1a2332;
    --bg-card: #141c2b;
    --bg-elevated: #1e2a3d;
    
    --text-primary: #ffffff;
    --text-secondary: #b4c0d3;
    --text-muted: #7d8ba3;
    
    --accent-primary: #10b981;
    --accent-secondary: #059669;
    --accent-teal: #14b8a6;
    --accent-cyan: #06b6d4;
    
    --border: rgba(255, 255, 255, 0.05);
    --border-strong: rgba(255, 255, 255, 0.1);
  }

  html[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --accent-primary: #10b981;
    --accent-secondary: #059669;
    --accent-teal: #14b8a6;
    --accent-cyan: #06b6d4;
    
    --border: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.12);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  #app-wrapper,
  #app-wrapper * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: #071019 !important;
    min-height: 100vh;
    width: 100%;
  }

  html:focus-within {
    scroll-behavior: smooth;
  }

  @media (prefers-reduced-motion: reduce) {
    html:focus-within {
      scroll-behavior: auto;
    }
  }

  html, body {
    scroll-behavior: smooth;
    font-size: 16px;
    background: #071019 !important;
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #071019!important;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    width: 100%;
  }

  #app-wrapper {
    background: var(--bg-primary) !important;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  body.admin-bar .header {
    top: 32px;
  }

  @media screen and (max-width: 782px) {
    body.admin-bar .header {
      top: 46px;
    }
  }


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

  a:hover {
    text-decoration: none !important;
  }
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

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

  @media (min-width: 1024px) {
    .container {
      padding: 0 2.5rem;
      max-width: 1400px;
    }
  }

  @media (min-width: 1280px) {
    .container {
      max-width: 1440px;
      padding: 0 3rem;
    }
  }

  @media (min-width: 1440px) {
    .container {
      max-width: 1600px;
      padding: 0 3.5rem;
    }
  }

  @media (min-width: 1920px) {
    .container {
      max-width: 1800px;
      padding: 0 4rem;
    }
  }

  /* HEADER */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 17, 32, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  .header.scrolled {
    background: rgba(10, 17, 32, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  html[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }

  html[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 0;
    transition: padding 0.3s ease;
  }

  .header.scrolled .header-inner {
    padding: 0.875rem 0;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
  }

  .logo:hover {
    transform: scale(1.02);
  }

  .logo-icon {
    height: 32px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  /* Show/hide logos based on theme */
  .logo-dark {
    display: block;
  }

  .logo-light {
    display: none;
  }

  html[data-theme="light"] .logo-dark {
    display: none;
  }

  html[data-theme="light"] .logo-light {
    display: block;
  }

  .nav {
    display: none;
    gap: 2rem;
  }

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

  .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
  }

  .nav-link:hover {
    color: var(--text-primary);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
  }

  .theme-toggle:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
  }

  .theme-toggle svg {
    width: 20px;
    height: 20px;
  }

  .icon-sun {
    display: none;
  }

  .icon-moon {
    display: block;
  }

  html[data-theme="light"] .icon-sun {
    display: block;
  }

  html[data-theme="light"] .icon-moon {
    display: none;
  }

  .btn {
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .btn:hover::before {
    width: 300px;
    height: 300px;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-teal));
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
  }

  .btn-primary:active {
    transform: translateY(-1px);
  }

  .btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
  }

  .btn-outline {
    background: var(--bg-card);
    border: 2px solid var(--border-strong);
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .btn-outline:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
  }

  /* TOP BANNER */
  .top-banner {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 99;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-teal));
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  body.admin-bar .top-banner {
    top: 104px;
  }

  @media screen and (max-width: 782px) {
    body.admin-bar .top-banner {
      top: 118px;
    }
  }

  .top-banner a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 1px;
  }

  .top-banner a:hover {
    border-bottom-color: white;
  }

  /* HERO */
  .hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
  }

  @media (min-width: 768px) {
    .hero {
      padding: 180px 0 100px;
    }
  }

  @media (min-width: 1280px) {
    .hero {
      padding: 220px 0 120px;
    }
  }

  body.admin-bar .hero {
    padding-top: 192px;
  }

  @media screen and (max-width: 782px) {
    body.admin-bar .hero {
      padding-top: 206px;
    }
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(16, 185, 129, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  html[data-theme="light"] .hero::before {
    opacity: 0.4;
  }

  .hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: 1fr;
  }

  @media (min-width: 1024px) {
    .hero-grid {
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4.5rem;
    }
  }

  @media (min-width: 1280px) {
    .hero-grid {
      gap: 6rem;
      grid-template-columns: 1.2fr 0.8fr;
    }
  }

  @media (min-width: 1440px) {
    .hero-grid {
      gap: 7rem;
    }
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

 .hero-title {
    font-size: 100%; /* antes 2.75rem */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

/* Media Queries ajustadas (mantenidas) */
@media (min-width: 768px) {
    .hero-title {
        font-size: 200%;
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 200%;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 200%;
        margin-bottom: 2.5rem;
        letter-spacing: -0.035em;
    }
}

@media (min-width: 1440px) {
    .hero-title {
        font-size: 300%;
        width: 89%;
    }
}

/* Nuevo estilo para que cada línea del título ocupe todo el ancho */
.hero-title-line {
    display: block; /* Asegura que cada línea ocupe su propio espacio */
}

/* Nuevo estilo para aplicar el gradiente solo a las palabras clave */
.hero-title .accent {
    /* Aquí se aplica el mismo gradiente que usabas en .hero-title span */
    background: linear-gradient(135deg, var(--accent-primary, #00FF00), var(--accent-teal, #10B981));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Por si falla el -webkit-text-fill-color */
    
    /* El display: flex en el span original no es necesario aquí */
    display: inline;
}

  .hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
  }

  @media (min-width: 1280px) {
    .hero-description {
      font-size: 1.25rem;
      max-width: 600px;
      margin-bottom: 2.5rem;
    }
  }

  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
  }

  .hero-cta-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    flex: 1;
    max-width: 600px;
  }

  @media (max-width: 480px) {
    .hero-cta-form {
      flex-wrap: wrap;
    }
  }

  .hero-email-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-strong);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-email-input::placeholder {
    color: var(--text-muted);
    transition: opacity 0.3s ease;
  }

  .hero-email-input:hover {
    border-color: rgba(16, 185, 129, 0.3);
  }

  .hero-email-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
  }

  .hero-email-input:focus::placeholder {
    opacity: 0.5;
  }

  .hero-subtext {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
  }

  .hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .hero-bullet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
  }

  .hero-bullet svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
  }

  .hero-visual {
    position: relative;
  }

  .hero-visual > div {
    /* Usamos bg-secondary o bg-card para el fondo de este bloque si la imagen no está presente */
    padding: 24px; 
  }
  .hero-visual h6 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted); /* Usar texto más tenue para el encabezado */
    margin-bottom: 1rem;
  }
  /* Contenedor de los botones */
.buttons-markets {
    display: flex;
      gap: 12px;
      opacity: 0.8;
  }

  /* Estilo base para todos los botones */
  .buttons-markets button {
      border: none;
      padding: 8px 14px; /* Padding más compacto */
      border-radius: 20px; 
      font-size: 0.9375rem; /* Ajustado al tamaño de texto del cuerpo */
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      white-space: nowrap;

  }

  /* Estilo para tendencia positiva (Austin, Nashville) */
  .buttons-markets .hot-positive {
      background-color: rgba(16, 185, 129, 0.1); /* Fondo verde muy claro */
      border: 1px solid var(--accent-primary); /* Borde con color de acento principal */
      color: var(--accent-primary); /* Texto con color de acento principal */
  }

  /* Estilo para tendencia estable/neutra (Miami, Seattle) */
  .buttons-markets .hot-neutral {
      background-color: var(--bg-elevated); 
      border: 1px solid var(--border-strong); 
      color: var(--text-secondary); /* Texto gris para neutro */
  }

  /* Estilo para tendencia negativa/resaltado (Denver) */
  .buttons-markets .hot-negative {
      /* Creamos una variante de color rojizo/morado (usaremos un color fijo si no hay variable) */
      background-color: #3b1e2a; 
      border: 1px solid #ff8e8e; 
      color: #ff8e8e; /* Texto rojo/rosa más claro */
  }

  /* Estilo para el número de valor dentro del botón (82, 78, etc.) */
  .buttons-markets button span.value {
      margin-right: 4px;
      font-weight: 700;
  }

  /* Estilo para los iconos de tendencia */
  .buttons-markets button i.icon {
      margin-left: 4px;
      font-style: normal;
      line-height: 1;
      font-size: 1rem; /* Asegura un buen tamaño para los iconos */
  }

  /* Hover effect general (opcional, para dar retroalimentación visual) */
  .buttons-markets button:hover {
      opacity: 0.85;
      transform: translateY(-1px);
  }

  .hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden; 
  }



  /* --- ESTILOS PARA BURBUJAS DE CHAT (Ajustado) --- */
.chat-overlay {
    top: 10%; /* Ajustado para que no esté tan alto */
    position: absolute;
    right: 5%;
    flex-direction: column;
    z-index: 10;
    align-items: flex-start; /* Alinear burbujas a la derecha */
    display: flex;
    height: 25%;
    gap: 5%;
}

.chat-bubble {
    position: relative;
    /* Fondo oscuro para las burbujas */
    background-color: rgba(38, 36, 49, 0.6);
    border-radius: 20px;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    height: 120%;
    width: fit-content;
    padding-right: 1rem;    /* se ajusta al contenido */
    max-width: max-content;
}

.chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#chat-1{
  opacity: 0.3;
}
#chat-2{
  opacity: 0.50;
}
#chat-3{
  opacity: 0.6;
}
#chat-4{
  opacity: 0.8;
}
/* --- ESTILOS PARA TARJETAS DE PROPIEDAD (Ajustado) --- */
.property-cards-overlay {
    position: absolute;
    top: 42%;
    z-index: 5;
    gap: 2%;
}

@media (min-width: 1024px) {
    .property-cards-overlay {
        display: flex;
    }
}

.property-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    background-color: #0000005d;

    flex-direction: column;
}

.property-card:nth-child(2) {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-tag-approved {
    position: absolute;
    bottom: 3%;
    left: 4%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #00D492;
    padding: 2% 5%;
    border-radius: 6px;
    font-size: 60%;
    font-weight: 600;
    z-index: 2;
}

.card-info-content {
    /* El contenido principal que contiene precio, iconografía, etc. */
    font-size: 50%;
    padding: 3%;
}

.card-price {
    font-size: 80%;
}

.card-specs,
.card-details-line {
    display: flex;
    align-items: center;
    font-size: 80%;
}

.card-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent-primary);
}

.card-footer {
    display: flex;
    padding: 6%;
    gap: 10%;
}

.btn-view-details {
  position: relative;
  font-size: 45%;
  background-color: #00BC7D;
  left: 5%;
  padding: 3% 15%;
  height: fit-content;
  width: 80%;
  border-radius: 8px;
}

.card-heart {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    position: relative;
    margin-top: 3.5%;
    height: 70%;
    width: 10%;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.card-heart:hover {
    background: var(--accent-primary);
    color: white;
}


.heart-icon {
  height: 80%;
  width: auto;
}

  /* TRUSTED BY */
.trusted-by {
  padding: 3rem 0;
}

.trusted-by-text {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.logos-scroll {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.logos-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll 35s linear infinite;
}


.logo-item {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  gap: 0.75rem;

  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: var(--bg-card);

  width: 12%;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;

}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.colum-class-span {
  display: flex;
  flex-direction: column;
}

.location-profile-landlord{
  
  color: var(--text-muted);
}

.verified-landlord{
  font-size: 0.75rem;
  color: #10B981;
}

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

  /* SECTION */
  .section {
    padding: 80px 0;
    background: var(--bg-primary);
  }

  @media (min-width: 768px) {
    .section {
      padding: 100px 0;
    }
  }

  @media (min-width: 1280px) {
    .section {
      padding: 120px 0;
    }
  }

  @media (min-width: 1440px) {
    .section {
      padding: 140px 0;
    }
  }

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

  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4.5rem;
    position: relative;
  }

  @media (min-width: 1280px) {
    .section-header {
      max-width: 900px;
      margin-bottom: 5rem;
    }
  }

  .section-kicker {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

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

  @media (min-width: 1024px) {
    .section-title {
      font-size: 3.5rem;
    }
  }

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

  .section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  /* HOW IT WORKS */
  .how-it-works-wrapper {
    display: grid;
    grid-column: span 2;
    gap: 4rem;
    align-items: center;    
  }

  @media (min-width: 1024px) {
    .how-it-works-wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
    }
  }

  .steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
  }

  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
  }

  .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-teal));
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
  }

  .step-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  .how-it-works-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .how-it-works-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  /* TESTIMONIALS */
  .testimonials-section {
    background: var(--bg-primary);
    padding: 80px 0;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  @media (min-width: 1280px) {
    .testimonials-grid {
      gap: 4rem;
    }
  }

  .testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--accent-primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    transition: all 0.4s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
  }

  .testimonial-card:hover::after {
    opacity: 0.2;
    transform: scale(1.1);
  }

  .testimonial-stars {
    display: flex;
    gap: 4px;
  }

  .testimonial-stars span {
    color: var(--accent-primary);
    font-size: 1.25rem;
  }

  .testimonial-text {
    font-size: 0.9375rem;
    color: #10B981;
    line-height: 1.7;
    flex: 1;
  }

  .testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .testimonial-role {
    font-size: 0.875rem;
    color: var(--text-muted);
  }

  /* PROGRAM BENEFITS */
  .program-benefits-section {
    background: var(--bg-secondary);
    padding: 80px 0;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
  }

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

  @media (min-width: 1280px) {
    .benefits-grid {
      gap: 4rem;
    }
  }

  .benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
  }

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

  .benefit-icon {
    width: 100%;
    height: 200px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .benefit-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }

  .benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
  }

  .benefit-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--accent-primary);
  }

  .benefit-tag svg {
    width: 14px;
    height: 14px;
  }

  /* PROPERTY OWNERS TESTIMONIALS */
  .property-owners-testimonials {
    background: var(--bg-primary);
    padding: 80px 0;
  }

  /* MID-PAGE CTA */
  .cta-section {
    padding: 80px 0;
    background: var(--bg-primary);
  }

  .cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  @media (min-width: 1024px) {
    .cta-inner {
      grid-template-columns: 1.3fr 1fr;
      gap: 5rem;
    }
  }

  @media (min-width: 1440px) {
    .cta-inner {
      gap: 6rem;
    }
  }

  .cta-copy h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .cta-copy h2 {
      font-size: 2.5rem;
    }
  }

  .cta-copy p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .cta-bullets {
    list-style: none;
    margin-bottom: 2rem;
  }

  .cta-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0.875rem;
  }

  .cta-bullet-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-weight: 700;
    flex-shrink: 0;
  }

  .cta-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    max-width: 600px;
  }

  @media (max-width: 640px) {
    .cta-form {
      flex-wrap: wrap;
    }
  }

  .cta-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-strong);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cta-input::placeholder {
    color: var(--text-muted);
    transition: opacity 0.3s ease;
  }

  .cta-input:hover {
    border-color: rgba(16, 185, 129, 0.3);
  }

  .cta-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
  }

  .cta-input:focus::placeholder {
    opacity: 0.5;
  }

  .cta-footnote {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
  }

  .cta-side-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
  }

  .cta-side-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-teal));
  }

  .cta-side-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }

  .cta-side-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }

  .cta-metrics {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .cta-metric {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 1.5rem;
  }

  .cta-metric::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-teal));
    border-radius: 3px;
  }

  .cta-metric-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cta-metric-label {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  /* HOW ARBIBASE PLUGS INTO YOUR PROGRAM */
  .plugs-section {
    background: var(--bg-primary);
    padding: 80px 0;
  }

  .plugs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
  }

  @media (min-width: 1024px) {
    .plugs-grid {
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
    }
  }

  @media (min-width: 1440px) {
    .plugs-grid {
      gap: 6rem;
    }
  }

  .plugs-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

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

  .plugs-header svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
  }

  .plugs-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .plugs-intro {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .interactive-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .interactive-steps {
      gap: 3rem;
    }
  }

  .interactive-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
  }

  /* Removed connecting line between step circles */
  .interactive-step::before {
    display: none;
  }

  .interactive-step:last-child::before {
    display: none;
  }

  .step-number {
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
  }

  .step-content {
    flex: 1;
  }

  .step-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
  }

  .step-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 1rem 0;
  }

  .step-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .step-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--accent-primary);
  }

  .step-tag svg {
    width: 14px;
    height: 14px;
  }

  .plugs-right {
    position: relative;
  }

  .plugs-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
  }

  .plugs-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .request-based-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
  }

  .request-based-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }

  .request-based-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .request-based-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
  }

  .request-based-feature svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
  }

  /* FAQ */
  .faq-section {
    background: var(--bg-primary);
    padding: 80px 0;
  }

  .faq-grid {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .faq-grid {
      gap: 2rem;
    }
  }

  .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 1.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-primary);
    border-radius: 16px 0 0 16px;
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
  }

  .faq-item.active {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
  }

  .faq-item.active::before {
    transform: scaleY(1);
  }

  .faq-question {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .faq-question::after {
    content: '+';
    color: var(--accent-primary);
    font-size: 1.75rem;
    font-weight: 400;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
  }

  .faq-item.active .faq-question::after {
    transform: rotate(135deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0.5rem;
  }

  .faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 1.25rem;
    padding-bottom: 0.5rem;
  }

  .faq-answer p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
  }

  /* CTA BUBBLE */
  .cta-bubble-section {
    padding: 0;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-teal) 100%);
    position: relative;
    overflow: hidden;
  }

  .cta-bubble-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-bubble-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-bubble-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 768px) {
    .cta-bubble-inner {
      padding: 4.5rem 3rem;
    }
  }

  @media (min-width: 1024px) {
    .cta-bubble-inner {
      flex-wrap: nowrap;
      padding: 5rem 3rem;
    }
  }

  .cta-bubble-content {
    flex: 1;
    color: white;
  }

  .cta-bubble-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .cta-bubble-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .cta-bubble-title {
      font-size: 2.5rem;
    }
  }

  .cta-bubble-text {
    font-size: 1.0625rem;
    opacity: 0.95;
    line-height: 1.6;
  }

  .cta-bubble-button .btn {
    background: white;
    color: var(--accent-primary);
    font-weight: 700;
    padding: 1rem 2.5rem;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cta-bubble-button .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  }
/* FOOTER */
  .footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
  }

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

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

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

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.25rem;
    font-weight: 700;
  }

  .footer-logo .logo-icon {
    height: 32px;
    width: auto;
  }

  .footer-logo span {
    display: none;
  }

  /* Footer logo theme switching uses same classes as header */

  .footer-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 400px;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
  }

  .footer-section-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-section-links li {
    margin: 0;
  }

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

  .footer-newsletter-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .footer-newsletter-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  @media (max-width: 480px) {
    .footer-newsletter-form {
      flex-wrap: wrap;
    }
  }

  .footer-email-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
  }

  .footer-email-input::placeholder {
    color: var(--text-muted);
  }

  .footer-email-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  }

  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-link {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
    text-decoration: none !important;
  }

  .footer-link:hover {
    color: var(--text-primary);
    text-decoration: none !important;
  }

  .footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
  }

  /* MODAL */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .modal-content {
    background: var(--bg-card);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  }

  .modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
  }

  .modal-header {
    padding: 2.5rem 2.5rem 2rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    background: linear-gradient(180deg, var(--bg-card) 0%, transparent 100%);
  }

  .modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .modal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .modal-close:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: rotate(90deg);
  }

  .modal-body {
    padding: 0;
    max-height: calc(90vh - 160px);
    overflow-y: auto;
  }

  .modal-iframe {
    width: 100%;
    height: 500px;
    border: none;
  }

  body.modal-open {
    overflow: hidden;
  }

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

    .section-title {
      font-size: 2rem;
    }

    .cta-copy h2 {
      font-size: 1.75rem;
    }

    .cta-inner {
      padding: 2rem;
    }

    .cta-metrics {
      grid-template-columns: 1fr;
    }

    .benefit-icon {
      height: 150px;
    }
  }
