* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  background-image: url("22_19_26.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  color: #1f2933;
}

/* --------------------------- LOGO ROW --------------------------- */

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 22px;
  text-align: left;
}

.logo-icon-inline {
  width: 72px;
  height: auto;
  flex-shrink: 0;
  margin-top: 6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title-inline {
  font-size: 34px;
  font-weight: 700;
  color: #0c3444;
  margin: 0;
  line-height: 1.0;
  letter-spacing: 1px;
}

.brand-sub-inline {
  font-size: 14px;
  color: #0c3444;
  margin-top: 4px;
  letter-spacing: 5px;
  font-weight: 600;
  text-transform: uppercase;
}

/* --------------------------- HERO CARD --------------------------- */

.card {
  background: #ffffff;
  width: 620px;
  max-width: 100%;
  padding: 34px 42px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  margin-bottom: 26px;
}

.subtitle {
  font-size: 20px;
  color: #2d3741;
  margin-bottom: 24px;
  line-height: 1.4;
}

.hero-tagline {
  font-size: 14px;
  color: #4b5563;
  margin-top: 18px;
  margin-bottom: 22px;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  background-color: #e6773a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(230, 120, 58, 0.35);
  transition: 0.18s ease;
}

.btn:hover {
  background-color: #d66a2f;
  transform: translateY(-2px);
}

.disclaimer {
  font-size: 14px;
  color: #3f4750;
  max-width: 540px;
  margin: 32px auto 10px;
  line-height: 1.45;
}

.link {
  font-size: 14px;
  color: #e6773a;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.link:hover {
  text-decoration: underline;
}

/* -------- TITLES -------- */

.section-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-top: 26px;
  margin-bottom: 6px;
}

.section-sub {
  text-align: center;
  margin-bottom: 18px;
  font-size: 14px;
  color: #4b5563;
  padding: 0 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------- HOW IT WORKS --------------------- */

.how-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 12px;
  margin-bottom: 32px;
}

.how-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(3px);
  padding: 26px 30px;
  border-radius: 20px;
  max-width: 740px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.how-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.how-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.how-step {
  max-width: 200px;
}

.how-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.how-step-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.how-step-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.35;
}

/* --------------------- TESTIMONIALS --------------------- */

.testimonials-section {
  max-width: 860px;
  width: 100%;
  padding: 0 12px;
  margin-bottom: 32px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 16px 16px;
  width: 260px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.35;
  margin-bottom: 8px;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
}

.testimonial-meta {
  font-size: 11px;
  color: #6b7280;
}

/* --------------------- TRUST BADGES --------------------- */

.trust-section {
  max-width: 740px;
  width: 100%;
  padding: 0 12px;
  margin: 0 auto 32px;
  text-align: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.05);
}

/* --------------------- BENEFITS --------------------- */

.benefit-container {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto 32px;
  padding: 0 12px;
}

.benefit-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px 16px;
  width: 240px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.benefit-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.35;
}

/* Mobile lists for benefits (hidden on desktop) */
.owner-benefits-mobile,
.renter-benefits-mobile {
  display: none;
  padding-left: 0;
  margin: 0 auto 24px;
  max-width: 500px;
  list-style: none;
  font-size: 15px;
  color: #374151;
  line-height: 1.45;
}

.owner-benefits-mobile li,
.renter-benefits-mobile li {
  margin-bottom: 12px;
}

/* --------------------- FAQ --------------------- */

.faq-box {
  max-width: 720px;
  margin: 0 auto 32px;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px 18px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.faq-item {
  margin-bottom: 14px;
}

.faq-q {
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 14px;
}

.faq-a {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
}

/* --------------------- CTA FINAL --------------------- */

.cta-section {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 18px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.cta-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-text {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 14px;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e6773a;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(230, 120, 58, 0.3);
  transition: 0.18s ease;
}

.cta-btn:hover {
  background-color: #d66a2f;
  transform: translateY(-1px);
}

/* --------------------- FOOTER --------------------- */

footer {
  margin-top: 20px;
  margin-bottom: 26px;
  text-align: center;
  color: #334155;
  font-size: 12px;
  padding: 0 12px;
}

footer a {
  color: #e6773a;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* FAQ link block: hidden on desktop */
/* ==========================================================
   MOBILE (FINAL) — SINGLE BLOCK
   ========================================================== */

@media (max-width: 600px) {
  body {
    padding-top: 20px;
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Logo row */
  .logo-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .brand-title-inline { font-size: 26px; }
  .brand-sub-inline { letter-spacing: 4px; font-size: 13px; }

  /* Hero card */
  .card {
    width: 100%;
    padding: 24px 16px;
    border-radius: 18px;
  }

  .subtitle { font-size: 17px; margin-bottom: 18px; }
  .hero-tagline { font-size: 13px; margin-top: 16px; margin-bottom: 20px; }

  .btn { width: 100%; }

  /* Disclaimer spacing */
  .disclaimer { margin-top: 18px; }

  /* Hide final CTA card (“Ready to get started?”) */
  .cta-section { display: none; }

  /* Benefits: show compact lists, hide desktop cards */
  .owner-benefits,
  .renter-benefits { display: none; }

  .owner-benefits-mobile,
  .renter-benefits-mobile { display: block; }

  /* HOW IT WORKS — compact + a bit more breathing room */
  .how-section { margin-bottom: 18px; }

  .how-box {
    padding: 16px 18px;
    border-radius: 16px;
  }

  .how-title { font-size: 16px; margin-bottom: 10px; }

  .how-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .how-step {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .how-icon {
    font-size: 18px;
    margin: 0;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .how-step-title {
    font-size: 13.5px;
    margin: 0 0 3px 0;
    font-weight: 600;
  }

  .how-step-text {
    font-size: 12.5px;
    margin: 0;
    line-height: 1.3;
    color: #4b5563;
  }

  /* REVIEWS — less dominant + only 2 */
  .testimonials-section { margin-bottom: 18px; }

  .testimonials-section .section-title {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 6px;
  }

  .testimonials-section .section-sub {
    font-size: 12.5px;
    line-height: 1.35;
    margin-bottom: 12px;
    max-width: 520px;
  }

  .testimonials-grid { gap: 10px; }

  .testimonial-card {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
  }

  .testimonial-text { font-size: 12.5px; line-height: 1.35; margin-bottom: 6px; }
  .testimonial-name { font-size: 12px; }
  .testimonial-meta { font-size: 11px; }

  .testimonials-grid .testimonial-card:nth-child(n+3) { display: none; }

  /* FAQ: hide the big box ONLY on mobile + show the link ONLY on mobile */
  .faq-box { display: none; }
/* Full width for common blocks in mobile */
  .testimonial-card,
  .benefit-box { width: 100%; }
}
.link {
  font-size: 14px;
  color: #e6773a;
  font-weight: 600;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}
/* ===== MOBILE ONLY — FIX HOW IT WORKS ALIGNMENT ===== */
@media (max-width: 640px) {

  .how-it-works {
    padding: 18px 16px;
  }

  .how-it-works .how-row {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 10px 0;
  }

  .how-it-works .how-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .how-it-works .how-icon {
    width: 26px;
    height: 26px;
    margin-top: 2px;
  }

  .how-it-works .how-title {
    margin: 0;
    line-height: 1.2;
  }

  .how-it-works .how-desc {
    margin: 0;
    padding-left: calc(26px + 12px);
    line-height: 1.35;
  }
}
/* ===== MOBILE ONLY — FIX HOW IT WORKS RIGHT COLUMN ALIGNMENT ===== */
@media (max-width: 640px) {

  /* cada fila */
  .how-it-works .how-row {
    display: grid;
    grid-template-columns: 150px 1fr; /* 👈 columna izquierda fija */
    column-gap: 12px;
    align-items: start; /* 👈 CLAVE */
    padding: 8px 0;
  }

  /* bloque izquierdo (icono + titulo) */
  .how-it-works .how-left {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .how-it-works .how-title {
    margin: 0;
    line-height: 1.2;
  }

  /* texto derecho */
  .how-it-works .how-desc {
    margin: 0;
    align-self: start; /* 👈 CLAVE */
    line-height: 1.35;
  }
}
/* ===== MOBILE ONLY — FIX HOW IT WORKS RIGHT COLUMN ALIGNMENT ===== */
@media (max-width: 640px) {

  /* cada fila */
  .how-it-works .how-row {
    display: grid;
    grid-template-columns: 150px 1fr; /* 👈 columna izquierda fija */
    column-gap: 12px;
    align-items: start; /* 👈 CLAVE */
    padding: 8px 0;
  }

  /* bloque izquierdo (icono + titulo) */
  .how-it-works .how-left {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .how-it-works .how-title {
    margin: 0;
    line-height: 1.2;
  }

  /* texto derecho */
  .how-it-works .how-desc {
    margin: 0;
    align-self: start; /* 👈 CLAVE */
    line-height: 1.35;
  }
}
/* ===== MOBILE ONLY — How it works: align RIGHT text perfectly ===== */
@media (max-width: 600px) {

  .how-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* cada fila */
  .how-step {
    max-width: 100%;
    display: grid;
    grid-template-columns: 26px 150px 1fr; /* icon | title column | right text */
    column-gap: 12px;
    align-items: start;
    text-align: left;
  }

  /* icono */
  .how-step .how-icon {
    grid-column: 1;
    margin: 0;
    line-height: 1;
    margin-top: 2px;
  }

  /* titulo (columna del medio, ancho fijo) */
  .how-step .how-step-title {
    grid-column: 2;
    margin: 0;
    line-height: 1.2;
  }

  /* texto derecho (siempre arranca igual) */
  .how-step .how-step-text {
    grid-column: 3;
    margin: 0;
    align-self: start;
    line-height: 1.35;
  }
}

/* ===== MOBILE — hide duplicated FAQ title text ===== */
@media (max-width: 640px) {
  footer h2,
  footer h3,
  footer .faq-title {
    display: none;
  }
}
/* ===== MOBILE ONLY — remove the black "FAQ" title above the footer ===== */
@media (max-width: 640px) {

  /* ya escondés el FAQ box en mobile, pero el título quedó suelto */
  .faq-box { display: none !important; }

  /* esconder el ÚLTIMO título de sección (en tu layout ese es el "FAQ" negro) */
  h1.section-title:last-of-type,
  h2.section-title:last-of-type,
  h3.section-title:last-of-type,
  div.section-title:last-of-type {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
  }
}
/* ===== MOBILE ONLY — accordion behavior ===== */
@media (max-width: 640px){
  .mob-acc .acc-body{ display:none; }
  .mob-acc.is-open .acc-body{ display:block; }

  .mob-acc .acc-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: 10px;
    cursor:pointer;
    user-select:none;
  }

  .mob-acc .acc-chevron{
    font-size: 18px;
    line-height: 1;
    opacity: .7;
    transform: rotate(0deg);
    transition: transform .15s ease;
  }

  .mob-acc.is-open .acc-chevron{
    transform: rotate(180deg);
  }
}

/* ===== MOBILE ONLY — accordion for benefit boxes ===== */
@media (max-width: 640px) {

  .benefit-box.mob-acc .acc-body {
    display: none;
  }

  .benefit-box.mob-acc.is-open .acc-body {
    display: block;
  }

  .benefit-box.mob-acc .acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
  }

  .benefit-box.mob-acc .acc-chevron {
    font-size: 18px;
    opacity: 0.6;
    transition: transform 0.2s ease;
  }

  .benefit-box.mob-acc.is-open .acc-chevron {
    transform: rotate(180deg);
  }
}

/* ===== MOBILE ONLY — use benefit cards (so accordion can work) ===== */
@media (max-width: 600px) {
  /* Mostrar tarjetas en mobile (estaban ocultas) */
  .owner-benefits,
  .renter-benefits { 
    display: flex !important; 
  }

  /* Ocultar listas compactas (las que se ven ahora) */
  .owner-benefits-mobile,
  .renter-benefits-mobile { 
    display: none !important; 
  }

  /* Cards a full width para mobile */
  .benefit-box { 
    width: 100% !important; 
    text-align: left;
  }
}
@media (max-width: 600px) {
  .benefit-box.mob-acc .acc-body { display: none; }
  .benefit-box.mob-acc.is-open .acc-body { display: block; }

  .benefit-box.mob-acc .acc-head{
    display:flex; align-items:center; justify-content:space-between;
    gap:10px; cursor:pointer; user-select:none;
  }

  .benefit-box.mob-acc .acc-chevron{
    font-size:18px; opacity:.6; transition: transform .2s ease;
  }
  .benefit-box.mob-acc.is-open .acc-chevron{ transform: rotate(180deg); }
}
/* ===== MOBILE ONLY — keep compact lists, hide big cards (FINAL) ===== */
@media (max-width: 600px){
  .owner-benefits,
  .renter-benefits{ display:none !important; }

  .owner-benefits-mobile,
  .renter-benefits-mobile{ display:block !important; }
}
/* ===== MOBILE ONLY — accordion for the COMPACT LISTS ===== */
@media (max-width: 600px){

  .owner-benefits-mobile li,
  .renter-benefits-mobile li{
    margin-bottom: 8px !important;           /* menos scroll */
  }

  .mob-acc-li .mob-acc-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    cursor:pointer;
    user-select:none;
    padding: 10px 10px;
    border-radius: 12px;

    /* nada de rectángulo blanco: solo un “glass” muy suave */
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(2px);
  }

  .mob-acc-li .mob-acc-title{
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
  }

  .mob-acc-li .mob-acc-body{
    display:none;
    padding: 8px 10px 2px 10px;
    font-size: 13px;
    line-height: 1.35;
    color: #4b5563;
  }

  .mob-acc-li.is-open .mob-acc-body{ display:block; }

  .mob-acc-li .mob-acc-chevron{
    opacity:.6;
    transition: transform .18s ease;
  }
  .mob-acc-li.is-open .mob-acc-chevron{ transform: rotate(180deg); }
}
/* ===== MOBILE ONLY — collapse whole Why sections by title ===== */
@media (max-width: 600px){

  /* título clickeable */
  h2.section-title.mob-sec-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    cursor:pointer;
    user-select:none;
    margin: 18px 0 10px !important;
  }

  .mob-sec-chevron{
    opacity:.6;
    transition: transform .18s ease;
    font-size: 18px;
    line-height: 1;
  }

  .mob-sec-open .mob-sec-chevron{
    transform: rotate(180deg);
  }

  /* cuerpo: oculto por defecto */
  .mob-sec-body{ display:none; }

  /* abrir cuando el título está "open" */
  .mob-sec-open + .mob-sec-body{ display:block; }
}
/* ===== MOBILE ONLY — collapse Why lists (HIDE by default) ===== */
@media (max-width: 600px){

  /* por defecto: listas ocultas */
  .owner-benefits-mobile,
  .renter-benefits-mobile{
    display: none !important;
  }

  /* cuando el título está abierto, mostrar la lista que le sigue */
  h2.section-title.mob-sec-open + .owner-benefits-mobile,
  h2.section-title.mob-sec-open + .renter-benefits-mobile{
    display: block !important;
  }

  /* título clickeable + flecha */
  h2.section-title.mob-sec-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    user-select:none;
  }

  .mob-sec-chevron{
    opacity:.6;
    transition: transform .18s ease;
    font-size: 18px;
    line-height: 1;
  }
  h2.section-title.mob-sec-open .mob-sec-chevron{
    transform: rotate(180deg);
  }
}
@media (max-width: 600px){
  h2.section-title.mob-sec-title::after{
    content:"▾";
    opacity:.6;
    font-size:18px;
    line-height:1;
    transition: transform .18s ease;
  }
  h2.section-title.mob-sec-open::after{
    transform: rotate(180deg);
  }
}
/* Footer links: keep them clearly clickable */
footer a{ text-decoration: underline; }
.site-footer{
  text-align:center;
  margin-top:40px;
  padding:18px 12px 26px;
  font-size:14px;
}

.site-footer .footer-links{
  margin:6px 0;
}

.site-footer a{
  text-decoration:none;
  color:inherit;
  font-weight:600;
}

.site-footer a:hover{
  text-decoration:underline;
}

.site-footer .dot{
  margin:0 8px;
  opacity:.7;
}

.site-footer .footer-copy{
  margin-top:10px;
  font-weight:500;
}

/* =======================
   FOOTER (FINAL, COMPACT)
   ======================= */

.site-footer{
  margin-top: 18px;
  margin-bottom: 26px;
  padding: 0 12px;
  text-align: center;
  color: #334155;
  font-size: 12px;           /* 👈 chiquito como antes */
  line-height: 1.35;
}

.site-footer .footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;                  /* 👈 menos separación */
  margin-top: 6px;
}

.site-footer .dot{
  opacity: .55;
  margin: 0 4px;             /* 👈 puntito bien pegadito */
}

.site-footer a{
  color: #e6773a;            /* 👈 naranja como antes */
  font-weight: 600;
  text-decoration: none;     /* 👈 discreto */
}

.site-footer a:hover{
  text-decoration: underline;
}

.site-footer .footer-copy{
  color: #64748b;   /* slate-500 → gris claro, limpio */
}

.site-footer .footer-copy{
  color: #a8b3c5 !important;
}
.testimonials-disclaimer {
  margin-top: 12px;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280; /* gris suave */
  font-style: italic;
}
.how-it-works-disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 16px;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 8px;
}

.how-it-works-disclaimer{
  text-align:center;
  font-size:0.85rem;
  opacity:0.75;
  margin: 12px 0 6px;
}
.how-it-works-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.6;
  margin: 10px 0 4px;
  white-space: nowrap;
}

.how-it-works-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.6;
  margin: 10px 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* How it works: micro-disclaimer (no truncation on mobile) */
.how-note{
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.25;
  opacity: 0.65;
  margin: 14px auto 0;
  padding: 0 14px;

  /* clave anti "..." */
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: 520px;
}

/* En desktop, si entra, que quede en una sola línea (pero sin cortar) */
@media (min-width: 700px){
  .how-note{
    white-space: nowrap;
    max-width: 900px;
  }
}

/* Testimonials note */
.testimonials-note{
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.25;
  opacity: 0.65;
  margin: 14px 0 0;
  padding: 0 14px;
}
    margin-bottom: 12px; 
    padding: 0 10px;
  }

  .testimonials-section .section-title{
    font-size: 16px;
    margin-top: 14px;
    margin-bottom: 4px;
  }

  .testimonials-section .section-sub{
    font-size: 12px;
    line-height: 1.25;
    margin-bottom: 8px;
    padding: 0 10px;
  }

  .testimonials-grid{
    gap: 8px;
  }

  .testimonial-card{
    width: 100%;
    padding: 10px 10px;     /* ↓ antes 12–16 */
    border-radius: 12px;    /* ↓ antes 14–18 */
    box-shadow: 0 6px 14px rgba(0,0,0,0.05); /* un toque menos “grande” */
  }

  .testimonial-text{
    font-size: 12px;        /* ↓ antes 12.5–13 */
    line-height: 1.25;
    margin-bottom: 5px;
  }

  .testimonial-name{
    font-size: 11.5px;
  }

  .testimonial-meta{
    font-size: 10.5px;
  }

  /* keep only 2 on mobile */
  .testimonials-grid .testimonial-card:nth-child(n+3){ 
    display: none; 
  }

  /* disclaimer under reviews */
  .testimonials-note,
  .testimonials-disclaimer{
    margin-top: 8px;
    font-size: 0.75rem;
    line-height: 1.2;
    padding: 0 10px;
  }
/* =========================
   PATCH — FIX PC + MOBILE REVIEWS
   Pegá esto AL FINAL del style.css
   ========================= */

/* --- PC / DESKTOP: vuelve a tu look original --- */
@media (min-width: 601px){
  .testimonials-section{ max-width: 860px; padding: 0 12px; margin-bottom: 32px; }
  .testimonials-section .section-title{ font-size: 22px; margin-top: 26px; margin-bottom: 6px; }
  .testimonials-section .section-sub{ font-size: 14px; margin-bottom: 18px; }

  .testimonials-grid{ gap: 12px; }
  .testimonial-card{
    width: 260px;
    padding: 16px 16px;
    border-radius: 18px;
  }
  .testimonial-text{ font-size: 13px; line-height: 1.35; margin-bottom: 8px; }
  .testimonial-name{ font-size: 12px; }
  .testimonial-meta{ font-size: 11px; }

  .testimonials-note,
  .testimonials-disclaimer{
    margin-top: 12px;
    font-size: 0.85rem;
  }
}

/* --- MOBILE: todo más chico + menos scroll + cards menos “largas” --- */
@media (max-width: 600px){

  /* sección reviews más compacta */
  .testimonials-section{
    margin-bottom: 12px !important;
    padding: 0 12px !important;
  }

  .testimonials-section .section-title{
    font-size: 16px !important;
    margin-top: 14px !important;
    margin-bottom: 4px !important;
  }

  .testimonials-section .section-sub{
    font-size: 12px !important;
    margin-bottom: 8px !important;
    line-height: 1.25 !important;
  }

  .testimonials-grid{
    gap: 8px !important;
  }

  /* cards: menos padding, menos alto, y más “cortas” visualmente */
  .testimonial-card{
    width: 92% !important;          /* no full-bleed; se ve más “corto” */
    max-width: 360px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
  }

  .testimonial-text{
    font-size: 12px !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  .testimonial-name{ font-size: 11.5px !important; }
  .testimonial-meta{ font-size: 10.5px !important; }

  /* “Testimonials reflect…” más pegado (menos aire arriba/abajo) */
  .testimonials-note,
  .testimonials-disclaimer{
    margin: 6px 0 0 !important;
    padding: 0 10px !important;
    font-size: 0.72rem !important;
    line-height: 1.15 !important;
  }

  /* “Used by parents…” un poco más cerca de la sección siguiente */
  .trust-section{
    margin: 6px auto 14px !important;
    padding: 0 10px !important;
  }
  .trust-badge{
    font-size: 11px !important;
    padding: 5px 12px !important;
  }
}
/* Desktop safety: always show all testimonial cards */
@media (min-width: 601px){
  .testimonials-grid .testimonial-card{ display: block; }
}
/* ===== DESKTOP FIX — show all review cards (do not affect mobile) ===== */
@media (min-width: 601px){
  .testimonials-grid .testimonial-card{
    display: block !important;
  }
}

/* =========================
   MOBILE — REVIEWS COMPACT (FINAL)
   Solo mobile, no toca PC
   ========================= */
@media (max-width: 600px){

  /* achica un poco títulos/subtítulos de la sección */
  .testimonials-section { 
    margin-bottom: 12px !important; 
    padding: 0 10px !important;
  }

  .testimonials-section .section-title{
    font-size: 17px !important;
    margin-top: 14px !important;
    margin-bottom: 4px !important;
  }

  .testimonials-section .section-sub{
    font-size: 12px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
    padding: 0 10px !important;
  }

  /* grid + cards: menos alto y más "angosto" visualmente */
  .testimonials-grid{
    gap: 8px !important;
  }

  .testimonial-card{
    width: 100% !important;         /* ocupa el contenedor */
    max-width: 360px !important;    /* 👈 hace que no se vea “re largo” */
    margin: 0 auto !important;      /* centra el card */
    padding: 10px 12px !important;  /* menos “relleno” */
    border-radius: 14px !important;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05) !important;
  }

  .testimonial-text{
    font-size: 12.25px !important;
    line-height: 1.28 !important;
    margin-bottom: 6px !important;
  }

  .testimonial-name{ font-size: 11.75px !important; }
  .testimonial-meta{ font-size: 10.75px !important; }

  /* frase “Testimonials…”: menos espacio arriba/abajo */
  .testimonials-note,
  .testimonials-disclaimer{
    margin-top: 8px !important;
    margin-bottom: 6px !important;
    padding: 0 10px !important;
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
  }

  /* acerca “Used by…” a lo de abajo */
  .trust-section{
    margin: 6px auto 18px !important;
    padding: 0 10px !important;
  }

  .trust-badge{
    font-size: 11.5px !important;
    padding: 5px 12px !important;
  }
}
/* =========================
   MOBILE — SHRINK TRUST / POST-TESTIMONIALS
   ========================= */
@media (max-width: 600px){

  /* Texto "Testimonials reflect..." */
  .testimonials-note,
  .testimonials-disclaimer{
    font-size: 0.72rem !important;
    line-height: 1.15 !important;
    margin: 6px 0 6px !important;
    padding: 0 8px !important;
    opacity: 0.6 !important;
  }

  /* Título "Used by parents across Australia" */
  .trust-section h2,
  .trust-section .section-title{
    font-size: 16px !important;
    margin: 8px 0 8px !important;
  }

  /* Contenedor de las mini cards */
  .trust-section{
    margin: 4px auto 14px !important;
    padding: 0 8px !important;
  }

  .trust-badges{
    gap: 6px !important;
  }

  /* Mini cards individuales */
  .trust-badge{
    font-size: 11px !important;
    padding: 4px 10px !important;
    border-radius: 999px !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04) !important;
  }
}
.footer-contact{
  margin-top: 6px;
}

.footer-contact summary{
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #334155;
}

.footer-contact summary::-webkit-details-marker{
  display: none;
}

.footer-contact-links{
  margin-top: 6px;
}
/* ===== FOOTER (restore clean orange style) ===== */
.site-footer{
  margin-top: 18px;
  margin-bottom: 26px;
  padding: 0 12px;
  text-align: center;
  color: #334155;
  font-size: 12px;
  line-height: 1.35;
}

.site-footer a{
  color: #e6773a;
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover{ text-decoration: underline; }

.site-footer .dot{
  margin: 0 6px;
  opacity: .7;
}

.site-footer .footer-contact,
.site-footer .footer-links{
  margin-top: 6px;
}

.site-footer .footer-legal{
  margin-top: 8px;
  font-size: 11px;
  opacity: .75;
}

.site-footer .footer-copy{
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
}

/* Mobile: tighter */
@media (max-width: 600px){
  .site-footer{ font-size: 11.5px; }
  .site-footer .dot{ margin: 0 5px; }
  .site-footer .footer-legal{ font-size: 10.5px; margin-top: 6px; }
  .site-footer .footer-copy{ margin-top: 6px; }
}

@media (max-width: 600px){
  .trust-section{ margin: 0 auto 18px; }
  .trust-badges{ gap: 6px; }
  .trust-badge{
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 999px;
  }
}
/* ===== Footer: volver a estilo chico + colores anteriores (sin romper links) ===== */

footer {
  text-align: center;
  padding: 14px 12px;
  line-height: 1.25;
}

/* Título "Contact us" más chico */
footer .contact-title,
footer h3,
footer h2 {
  font-size: 14px !important;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #1f2933; /* texto oscuro (ajustable al color anterior) */
}

/* Línea de links */
footer .contact-links,
footer nav,
footer .footer-links,
footer p {
  font-size: 12px !important;
  margin: 0;
}

/* Links: sacar violeta/underline default y volver a estilo prolijo */
footer a {
  color: #1f2933 !important;      /* <-- si antes era otro color, decime cuál y lo dejo exacto */
  text-decoration: none !important;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline !important;
}

/* “Available in Australia...” (si está en un <small> o texto común) */
footer small,
footer .footer-note {
  display: block;
  margin-top: 6px;
  font-size: 11px !important;
  color: rgba(31, 41, 51, 0.70);  /* gris suave */
}

/* Copyright */
footer .copyright,
footer .footer-copyright {
  margin-top: 8px;
  font-size: 12px !important;
  color: #1f2933;
}
/* ===================== FOOTER: volver al estilo anterior (chico + naranja + gris) ===================== */
footer{
  text-align:center;
  padding: 14px 12px 18px;
}

/* Título "Contact us" (chico, discreto) */
footer h2, 
footer .contact-title{
  margin: 0 0 6px;
  font-size: 16px;          /* CHICO */
  font-weight: 700;
  color: #1f2933;
}

/* Línea de links (email/IG/FB y T&C/Privacy/FAQs) */
footer a,
footer .footer-links a{
  color: #f26a3d;           /* NARANJA anterior */
  text-decoration: none;
  font-size: 14px;          /* CHICO */
  font-weight: 600;
}

footer a:hover,
footer .footer-links a:hover{
  text-decoration: underline;
}

/* Separadores tipo " · " */
footer .dot,
footer .footer-sep{
  color: #f26a3d;
  margin: 0 6px;
  font-weight: 700;
  font-size: 14px;
}

/* “Available in Australia…” (si lo tenés) */
footer .footer-note,
footer small{
  display:block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(31,41,51,0.55);
}

/* “Snoo Hire Australia © 2025” al final, gris clarito y más chico */
footer .copyright,
footer .footer-brand{
  display:block;
  margin-top: 10px;
  font-size: 12px;          /* MÁS CHICO */
  color: rgba(31,41,51,0.42); /* GRIS CLARITO */
  font-weight: 600;
}
/* =========================
   FOOTER STYLE — back to the old look (small + orange + subtle)
   Pegá esto AL FINAL del style.css
   ========================= */

.site-footer{
  margin-top: 18px !important;
  margin-bottom: 26px !important;
  padding: 0 12px !important;
  text-align: center !important;

  /* letras chiquitas como antes */
  font-size: 12px !important;
  line-height: 1.35 !important;

  /* color base discreto */
  color: #334155 !important;
}

/* “Contact us” → discreto (no gigante) */
.site-footer h1,
.site-footer h2,
.site-footer h3{
  margin: 0 0 6px 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #0c3444 !important; /* igual familia de tu marca */
}

/* Contenedor de links (compacto) */
.site-footer .footer-links{
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 6px !important;
  margin: 6px 0 !important;
}

/* Puntitos separadores */
.site-footer .dot{
  margin: 0 4px !important;
  opacity: .55 !important;
}

/* Links SIEMPRE naranja (incluye visited) */
.site-footer a,
.site-footer a:visited{
  color: #e6773a !important;
  font-weight: 600 !important;
  text-decoration: none !important;  /* como antes: limpio */
}

.site-footer a:hover{
  text-decoration: underline !important;
}

/* Copyright bien gris clarito y chiquito */
.site-footer .footer-copy{
  margin-top: 10px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #a8b3c5 !important;
}
/* =========================
   FOOTER — FORCE OLD LOOK (FINAL)
   Pegá esto AL FINAL del style.css
   ========================= */

/* base footer: siempre chico y prolijo */
footer,
.site-footer{
  text-align: center !important;
  margin-top: 18px !important;
  margin-bottom: 26px !important;
  padding: 0 12px !important;
  font-size: 12px !important;          /* 👈 letras chiquitas como antes */
  line-height: 1.35 !important;
  color: #334155 !important;           /* texto base */
}

/* si tenés título "Contact us" dentro del footer */
footer h1, footer h2, footer h3,
.site-footer h1, .site-footer h2, .site-footer h3{
  margin: 0 0 6px 0 !important;
  font-size: 14px !important;          /* 👈 más chico */
  font-weight: 700 !important;
  color: #0c3444 !important;           /* tono sobrio (como tu marca) */
}

/* links: que NUNCA se vean violeta/azul */
footer a:link,
footer a:visited,
.site-footer a:link,
.site-footer a:visited{
  color: #e6773a !important;           /* 👈 naranja */
  font-weight: 600 !important;
  text-decoration: none !important;    /* discreto como antes */
}

/* hover */
footer a:hover,
.site-footer a:hover{
  text-decoration: underline !important;
}

/* separadores puntito (si los usás) */
footer .dot,
.site-footer .dot{
  margin: 0 6px !important;
  opacity: .55 !important;
}

/* “Snoo Hire Australia © 2025” gris clarito y discreto */
footer .footer-copy,
.site-footer .footer-copy{
  margin-top: 10px !important;
  font-weight: 500 !important;
  color: #a8b3c5 !important;           /* 👈 gris claro */
  font-size: 12px !important;
}

/* si el footer tiene rows/links en contenedor */
footer .footer-links,
.site-footer .footer-links{
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 6px !important;
  margin-top: 6px !important;
}
/* ==================================================
   FOOTER — FINAL DEFINITIVO (FORZADO)
   ================================================== */

/* CONTENEDOR */
footer{
  text-align: center !important;
  padding: 12px 10px 18px !important;
  margin: 0 auto !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

/* ---------- CONTACT US ---------- */
/* MUCHO MÁS CHICO + NARANJA */
footer h1,
footer h2,
footer h3{
  font-size: 13px !important;      /* 👈 chico */
  font-weight: 700 !important;
  color: #e6773a !important;       /* 👈 naranja */
  margin: 0 0 6px 0 !important;
}

/* ---------- LINKS (EMAIL · IG · FB) ---------- */
/* TODO NARANJA, SIN VISITED AZUL */
footer a,
footer a:link,
footer a:visited{
  color: #e6773a !important;       /* 👈 naranja */
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

footer a:hover{
  text-decoration: underline !important;
}

/* ---------- SEPARADORES · ---------- */
footer .dot,
footer span{
  color: #e6773a !important;
  opacity: 1 !important;
  margin: 0 4px !important;
}

/* ---------- DISCLAIMER ---------- */
/* Gris CLARITO + letra MÁS chica pero legible */
footer small,
footer .footer-disclaimer{
  display: block !important;
  margin-top: 6px !important;
  font-size: 11px !important;      /* 👈 más chico */
  color: #9ca3af !important;       /* 👈 gris claro */
  line-height: 1.35 !important;
}

/* ---------- COPYRIGHT ---------- */
/* Gris CLARITO, MUY DISCRETO */
footer .footer-copy,
footer .copyright{
  display: block !important;
  margin-top: 8px !important;
  font-size: 11px !important;      /* 👈 más chico aún */
  font-weight: 500 !important;
  color: #a8b3c5 !important;       /* 👈 gris clarito */
}
/* ==================================================
   FOOTER — ESTÉTICA FINAL (SIN TOCAR FUNCIONALIDAD)
   ================================================== */

footer{
  text-align: center;
  padding: 12px 10px 18px;
  font-size: 12px;
  line-height: 1.35;
}

/* ---------- CONTACT US (summary) ---------- */
/* MUCHO MÁS CHICO + NARANJA */
.footer-contact summary{
  font-size: 13px;           /* chico */
  font-weight: 700;
  color: #e6773a;            /* naranja */
  cursor: pointer;
  list-style: none;          /* limpia el marker */
  margin-bottom: 6px;
}

/* sacar flecha default en algunos browsers */
.footer-contact summary::-webkit-details-marker{
  display: none;
}

/* ---------- LINKS: Email · Instagram · Facebook ---------- */
.footer-contact-links a{
  font-size: 13px;
  font-weight: 600;
  color: #e6773a;            /* naranja */
  text-decoration: none;
}

.footer-contact-links a:hover{
  text-decoration: underline;
}

.footer-contact-links .dot{
  color: #e6773a;
  margin: 0 4px;
}

/* ---------- TERMS / PRIVACY / FAQS ---------- */
.footer-links{
  margin-top: 6px;
  font-size: 13px;
}

.footer-links a{
  color: #e6773a;            /* naranja */
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover{
  text-decoration: underline;
}

/* ---------- LEGAL DISCLAIMER ---------- */
/* gris clarito + letra chica pero legible */
.footer-legal{
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.35;
  color: #9ca3af;            /* gris claro */
  opacity: 1;                /* controlamos color, no opacity */
}

/* ---------- COPYRIGHT ---------- */
/* gris muy clarito, discreto */
.footer-copy{
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #a8b3c5;
}
/* SOLO el disclaimer legal — más oscuro y claramente legible */
.footer-legal{
  font-size: 0.72rem !important;
  color: #4b5563 !important;   /* gris más oscuro, profesional */
  opacity: 0.7 !important;       /* sin transparencia */
  line-height: 1.3 !important;
  margin-top: 6px !important;
  text-align: center !important;
}
/* ===== FIX DEFINITIVO — FOOTER LINKS SIEMPRE VISIBLES ===== */

/* aseguramos que los links del footer NO se oculten en mobile */
@media (max-width: 640px) {

  .footer-links {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .footer-links a {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
/* =====================================================
   FINAL FIX — FAQ LINK DEL FOOTER (PC + MOBILE)
   NO TOCA EL FAQ BLANCO DE PC
   ===================================================== */

/* En mobile, el FAQ grande del HOME se oculta */
@media (max-width: 600px){
  body:not(.page-faq) .faq-box{
    display: none !important;
  }
}

/* En la página faq.html, el FAQ SIEMPRE se muestra */
.page-faq .faq-box{
  display: block !important;
}

/* El FOOTER y sus links SIEMPRE visibles y clickeables */
@media (max-width: 600px){
  footer{
    position: relative !important;
    z-index: 9999 !important;
  }

  footer .footer-links{
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-top: 8px !important;
  }

  footer .footer-links a{
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
/* =========================
   FINAL FIX — NO SE ROMPE MÁS
   ========================= */

/* En mobile: ocultar SOLO el FAQ blanco del HOME */
@media (max-width: 600px){
  body:not(.page-faq) .faq-box{
    display: none !important;
  }
}

/* En faq.html: el FAQ SIEMPRE visible */
.page-faq .faq-box{
  display: block !important;
}

/* Footer links SIEMPRE visibles y clickeables */
@media (max-width: 600px){
  footer .footer-links{
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  footer .footer-links a{
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

