/* installation.css */

.install-hero{
    padding: 4.2rem 0 2.4rem;
    text-align: center;
  }
  
  .install-title{
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -.02em;
  }
  
  .install-sub{
    margin: .9rem auto 0;
    max-width: 900px;
    color: var(--text-muted);
    font-size: 1.05rem;
  }
  
  .install-cta{
    margin-top: 1.4rem;
    display: flex;
    gap: .85rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .install-card{
    padding: 2rem;
  }
  
  .install-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
  }
  
  .install-box{
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    border-radius: 18px;
    padding: 1.15rem 1.15rem;
  }
  
  .install-step{
    display: inline-flex;
    align-items: center;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.86);
    font-size: .8rem;
    font-weight: 800;
    margin-bottom: .7rem;
  }
  
  .install-h2{
    font-size: 1.2rem;
    margin-bottom: .35rem;
  }
  
  .install-p{
    color: rgba(255,255,255,.86);
    margin-top: .35rem;
    line-height: 1.65;
  }
  
  .install-list{
    margin-top: .7rem;
    padding-left: 1.1rem;
    color: rgba(255,255,255,.86);
  }
  
  .install-list li{
    margin: .4rem 0;
  }
  
  .install-divider{
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 1.6rem 0;
  }
  
  .install-bullets{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .7rem;
    margin-top: .8rem;
  }
  
  .install-bullet{
    padding: .85rem 1rem;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    border-radius: 16px;
    color: rgba(255,255,255,.86);
  }
  
  .install-faq{
    display: grid;
    gap: .75rem;
    margin-top: .9rem;
  }
  
  .install-faq-row{
    padding: .9rem 1rem;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    border-radius: 16px;
  }
  
  .install-q{
    font-weight: 800;
    margin-bottom: .25rem;
  }
  
  .install-a{
    color: rgba(255,255,255,.82);
  }
  
  .install-actions{
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
  }
  
  @media (max-width: 900px){
    .install-card{ padding: 1.4rem; }
    .install-grid{ grid-template-columns: 1fr; }
    .install-bullets{ grid-template-columns: 1fr; }
  }
  
  @media (max-width: 640px){
    .install-actions .btn{ width: 100%; }
  }
  /* =========================
   INSTALLATION (LIGHT PAGE FIX)
========================= */

.install-hero{
    padding: 4.2rem 0 2.4rem;
    text-align: center;
  }
  
  .install-title{
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -.02em;
    color: #0f172a;
  }
  
  .install-sub{
    margin: .9rem auto 0;
    max-width: 900px;
    color: #475569;
    font-size: 1.05rem;
  }
  
  .install-cta{
    margin-top: 1.4rem;
    display: flex;
    gap: .85rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Main card -> make it light */
  .install-card{
    padding: 2rem;
    background: #ffffff !important;
    border: 1px solid rgba(2,6,23,.08) !important;
    box-shadow: 0 22px 70px rgba(2,6,23,.10);
    color: #0f172a !important;
  }
  
  /* Ensure all text inside is visible */
  .install-card *{
    color: inherit;
  }
  
  /* Grid */
  .install-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
  }
  
  /* Boxes */
  .install-box{
    border: 1px solid rgba(2,6,23,.08);
    background: rgba(2,6,23,.02);
    border-radius: 18px;
    padding: 1.15rem 1.15rem;
  }
  
  /* Step pill */
  .install-step{
    display: inline-flex;
    align-items: center;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(2,6,23,.14);
    background: rgba(37,99,235,.08);
    color: #1e40af;
    font-size: .8rem;
    font-weight: 800;
    margin-bottom: .7rem;
  }
  
  .install-h2{
    font-size: 1.2rem;
    margin-bottom: .35rem;
    color: #0f172a;
  }
  
  .install-p{
    margin-top: .35rem;
    line-height: 1.65;
    color: #334155;
  }
  
  .install-list{
    margin-top: .7rem;
    padding-left: 1.1rem;
    color: #334155;
  }
  .install-list li{
    margin: .4rem 0;
  }
  
  /* Dividers */
  .install-divider{
    height: 1px;
    background: rgba(2,6,23,.10);
    margin: 1.6rem 0;
  }
  
  /* Bullet cards */
  .install-bullets{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .7rem;
    margin-top: .8rem;
  }
  
  .install-bullet{
    padding: .85rem 1rem;
    border: 1px solid rgba(2,6,23,.08);
    background: rgba(2,6,23,.02);
    border-radius: 16px;
    color: #0f172a;
  }
  
  /* FAQ */
  .install-faq{
    display: grid;
    gap: .75rem;
    margin-top: .9rem;
  }
  
  .install-faq-row{
    padding: .9rem 1rem;
    border: 1px solid rgba(2,6,23,.08);
    background: rgba(2,6,23,.02);
    border-radius: 16px;
  }
  
  .install-q{
    font-weight: 800;
    margin-bottom: .25rem;
    color: #0f172a;
  }
  
  .install-a{
    color: #334155;
  }
  
  /* Actions */
  .install-actions{
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
  }
  
  /* Make sure ghost button is readable on light background */
  .install-actions .btn-ghost{
    border: 1px solid rgba(37,99,235,.35);
    background: rgba(37,99,235,.08);
    color: #1e40af;
  }
  
  /* Mobile */
  @media (max-width: 900px){
    .install-card{ padding: 1.4rem; }
    .install-grid{ grid-template-columns: 1fr; }
    .install-bullets{ grid-template-columns: 1fr; }
  }
  
  @media (max-width: 640px){
    .install-actions .btn{ width: 100%; }
  }

  /* INSTALL HERO: make ghost button visible on light background */
.install-cta .btn-ghost{
    background: rgba(37, 99, 235, .10) !important;
    border: 1px solid rgba(37, 99, 235, .35) !important;
    color: #1e40af !important;
  }
  
  .install-cta .btn-ghost:hover{
    background: rgba(37, 99, 235, .16) !important;
    border-color: rgba(37, 99, 235, .50) !important;
    color: #1e3a8a !important;
  }
  
  /* WhatsApp button (green) - installation page only */
.install-actions .btn-wa{
  background: #16a34a !important;
  border: 1px solid rgba(22,163,74,.35) !important;
  color: #fff !important;
  box-shadow: 0 16px 40px rgba(22,163,74,.25);
}

.install-actions .btn-wa:hover{
  background: #15803d !important;
  transform: translateY(-1px);
}
