@charset "utf-8";
/* CSS Document */

/* =========================================
   Life Binder Pro — Shared Styles
   Used by: index.html + pricing.html
   ========================================= */

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 75px;
  background: #ffffff;
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================
   Header (shared)
   ========================================= */
.header{
  background: #336b9d;
  padding: 0.75rem 0;
  text-align: left;
  color: white;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 75px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-inner{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.brand img{
  height: 40px;
  width: auto;
  border-radius: 6px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
  display: block;
}

.nav{
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav a{
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
  opacity: 0.95;
}
.nav a:hover{ opacity: 1; text-decoration: underline; }

/* =========================
   Mobile navigation
   ========================= */

/* Hamburger button (hidden on desktop) */
.nav-toggle{
  display: none !important;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle:focus{
  outline: 3px solid rgba(74,144,164,0.45);
  outline-offset: 2px;
}

/* Mobile menu panel (hidden by default) */
.mobile-nav{
  display: none;
  position: fixed;
  top: 75px; /* header height */
  left: 0;
  right: 0;
  background: #336b9d;
  border-top: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 999;
}

.mobile-nav a{
  display: block;
  padding: 14px 18px;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.mobile-nav a:hover{
  background: rgba(255,255,255,0.08);
}

/* When menu is open */
.mobile-nav.open{
  display: block;
}

/* Show hamburger on small screens, keep desktop nav hidden */
@media (max-width: 768px){
  .nav{ display: none !important; }
  .nav-toggle{ display: inline-block !important; }
}

/* REMOVE or comment out your old rule that hid nav at 480px */
/*
@media (max-width: 480px){
  .nav{ display:none; }
}
*/


/* =========================================
   Buttons (shared)
   ========================================= */
.btn{
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #4a90a4;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
  text-align: center;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 164, 0.4);
  background: #3d7f93;
}

.btn.secondary{
  background: transparent;
  color: #4a90a4;
  border: 2px solid #4a90a4;
  box-shadow: none;
}
.btn.secondary:hover{
  background: #e7f4f7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 164, 0.15);
}

/* =========================================
   Footer (shared)
   ========================================= */
.footer{
  background: #336b9d;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* =========================================
   Homepage (index.html)
   ========================================= */
.hero{
  padding: 4rem 0 2rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}


.hero-content{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-logo{
  max-width: 250px;
  flex-shrink: 0;
}
.hero-logo img{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}

.hero-text{ flex: 1; text-align: left; }

.hero h1{
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #336b9d;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}

.hero p{
  font-size: 1.2rem;
  color: #4a7580;
}

/* Shared hero background image */
.hero-bg{
  background:
    linear-gradient(
      rgba(248, 249, 250, 0.75),
      rgba(248, 249, 250, 0.75)
    ),
    url("https://lifebinderpro.com/images/index_bk.jpg") center / cover no-repeat;
}

/* Mobile/tablet: adjust crop + spacing so the image looks intentional */
@media (max-width: 1024px){
  .hero-bg{
    background-position: center top;
  }
}


/* Features */
.features{
  padding: 2rem 0 2.5rem 0; /* reduce bottom */
  background: #f8f9fa;
}

.features h2{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #336b9d;
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card{
  padding: 2rem;
  background: #f0f8fa;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #4a90a4;
}

.feature-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 144, 164, 0.15);
}

.feature-header{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-icon{
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background: #4a90a4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

.feature-card h3{
  color: #4a90a4;
  margin: 0;
  font-size: 1.3rem;
}

.feature-card p{
  color: #666;
  line-height: 1.7;
}

/* About */
.about{
  padding: 4rem 0;
  background: white;
}

.about-content{
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.about-text{ text-align: left; }

.about-text h2{
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #336b9d;
}

.about-text p{
  font-size: 1.1rem;
  color: #4a7580;
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.about-image{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img{
  width: 85%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(74, 144, 164, 0.2);
  display: block;
}

/* CTA */
.cta{
  padding: 2.5rem 0 4rem 0; /* reduce top */
  text-align: center;
  background: white;
}

.cta h2{
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #336b9d;
}

.cta p{
  font-size: 1.1rem;
  color: #4a7580;
  margin-bottom: 2rem;
}

/* =========================================
   Pricing Page (pricing.html)
   ========================================= */
.hero.pricing-hero{
  padding: 3.5rem 0 2rem 0;
}
.hero.pricing-hero .hero-content{
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}
.hero.pricing-hero .hero-text{ text-align: center; }
.hero.pricing-hero h1{ font-size: 2.4rem; margin-bottom: 0.75rem; }
.hero.pricing-hero p{ font-size: 1.15rem; margin: 0 auto; max-width: 820px; }

.pricing{
  padding: 2.5rem 0 3.5rem 0;
  background: #ffffff;
}

.pricing h2{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #336b9d;
}

.pricing-subtitle{
  text-align: center;
  color: #4a7580;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

.billing-toggle{
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 2rem auto;
  flex-wrap: wrap;
}

.toggle-btn{
  border: 1px solid rgba(74,144,164,0.35);
  background: #f0f8fa;
  color: #336b9d;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.toggle-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 144, 164, 0.12);
}
.toggle-btn.active{
  background: #4a90a4;
  color: #fff;
  border-color: #4a90a4;
  box-shadow: 0 8px 20px rgba(74, 144, 164, 0.18);
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.plan{
  padding: 2rem;
  background: #f0f8fa;
  border-radius: 10px;
  border-left: 4px solid #4a90a4;
  box-shadow: 0 4px 15px rgba(74, 144, 164, 0.10);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan.featured{
  background: #ffffff;
  border-left: 4px solid #336b9d;
  box-shadow: 0 8px 24px rgba(51, 107, 157, 0.18);
  position: relative;
}

.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: #336b9d;
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.plan h3{
  color: #336b9d;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.plan .plan-desc{
  color: #4a7580;
  margin-bottom: 1rem;
}

/* =========================================
   Pricing card color variants (logo-based)
   ========================================= */

/* FREE — soft neutral blue */
.plan-free{
  border-left-color: #7faac3;
  background: linear-gradient(
    rgba(127,170,195,0.08),
    rgba(127,170,195,0.08)
  ), #f0f8fa;
}

.plan-free h3,
.plan-free .price{
  color: #5f8fa8;
}

/* COMPLETE — primary brand blue */
.plan-complete{
  border-left-color: #336b9d;
  background: linear-gradient(
    rgba(51,107,157,0.08),
    rgba(51,107,157,0.08)
  ), #ffffff;
}

.plan-complete h3,
.plan-complete .price{
  color: #336b9d;
}

/* PLUS — teal accent */
.plan-plus{
  border-left-color: #4a90a4;
  background: linear-gradient(
    rgba(74,144,164,0.08),
    rgba(74,144,164,0.08)
  ), #f0f8fa;
}

.plan-plus h3,
.plan-plus .price{
  color: #4a90a4;
}

.price{
  font-size: 2rem;
  font-weight: 700;
  color: #336b9d;
  margin: 0.25rem 0 0.5rem 0;
}
.price small{
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a7580;
}

.plan ul{
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan li{
  margin: 0.6rem 0;
  color: #555;
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}

.plan li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4a90a4;
  font-weight: 700;
}

.note-box{
  background: #f8f9fa;
  border-left: 4px solid #4a90a4;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  color: #4a7580;
  max-width: 1000px;
  margin: 2.5rem auto 0 auto;
}
.note-box strong{ color: #336b9d; }

.family-band{
  background: #f8f9fa;
  padding: 3rem 0;
}

.family-card{
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(74, 144, 164, 0.12);
  border-left: 4px solid #4a90a4;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.family-card h2{
  color: #336b9d;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  text-align: left;
}

.family-card p{
  color: #4a7580;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.family-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.family-pill{
  background: #f0f8fa;
  border-radius: 8px;
  padding: 1rem;
  color: #555;
  border-left: 4px solid #4a90a4;
}

.compare{
  padding: 3.5rem 0;
  background: #ffffff;
}

.compare h2{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #336b9d;
}

.table-wrap{
  overflow-x: auto;
  margin-top: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(74,144,164,0.15);
}

table{
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #fff;
}

th, td{
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #444;
}

th{
  background: #f0f8fa;
  color: #336b9d;
  font-size: 1rem;
}

.check{ color: #4a90a4; font-weight: 800; }
.dash{ color: #999; }

/* =========================================
   Responsive (shared)
   ========================================= */


  /* FAQ styling - matches your existing calm blue/teal theme */
  .faq {
    padding: 4rem 0;
    background: #f8f9fa;
  }

  .faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #336b9d;
  }

  .faq-subtitle {
    text-align: center;
    color: #4a7580;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    font-size: 1.05rem;
  }

  .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border-left: 4px solid #4a90a4;
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.2rem 1.2rem;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #336b9d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .faq-question:focus {
    outline: 3px solid rgba(74,144,164,0.35);
    outline-offset: 2px;
  }

  .faq-icon {
    font-size: 1.25rem;
    color: #4a90a4;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .faq-answer p {
    padding: 0 1.2rem 1.2rem 1.2rem;
    color: #555;
    line-height: 1.7;
  }

  /* Open state */
  .faq-item.open .faq-answer {
    max-height: 400px; /* enough for these answers */
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg); /* turns + into x */
  }


/* Tablet + down: stack hero nicely */
@media (max-width: 1024px){
  .hero-content{
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .hero-text{ text-align: center; }
  .hero-logo{ max-width: 200px; }
  .hero{ padding: 3rem 0 2rem 0; }

  /* Hero background crop */
  .hero-bg{
    background-position: center top;
  }
}

/* Mobile: tighten type + single column layouts */
@media (max-width: 768px){
  .hero h1{ font-size: 2rem; }
  .hero p{ font-size: 1rem; }

  .feature-grid{ grid-template-columns: 1fr; }
  .about-content{ grid-template-columns: 1fr; }
  .about-text{ text-align: center; }
  .about-text p{ text-align: left; }

  .hero.pricing-hero h1{ font-size: 2rem; }
  .hero.pricing-hero p{ font-size: 1rem; }

  /* Tap-friendly buttons */
  .btn{
    width: 100%;
    max-width: 420px;
  }
  
}
  @media (max-width: 768px) {
    .faq { padding: 3rem 0; }
    .faq-question { font-size: 1rem; }
  }
  



.footer a{ color:#fff; text-decoration: underline; }
