:root{
  --bg: #f2f2f2;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --blue: #2F5581;
  --blue-dark: #2F5581;
  --orange: #C04F2F;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --max: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.35;
  padding-top: 60px;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
/* =========================
   NAVIGATION (HealthTrack Style)
========================= */

.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f4f4f6;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 78px;
}

/* Brand */
.nav-brand{
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-badge{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8c6cff, #a985ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: white;
  letter-spacing: .5px;
}

.logo-text{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .2px;
  color: #333;
}
.logo-img{
  width: 100px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  
}

/* Desktop Menu */
.nav-links{
  grid-column: 2;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.nav-links a{
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  padding: 10px 18px;
  border-radius: 16px;
  transition: all .25s ease;
}

/* Active pill */
.nav-links a.active{
  background: #C04F2F;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* Hover */
.nav-links a:not(.active):hover{
  background: rgba(0,0,0,.06);
}

/* Login Button – Match Nav Pills */
.login-btn {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 16px;
  background: #2F5581;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover */
.login-btn:hover {
  background: #C04F2F;
  text-decoration: none;
}

/* Subtle Press Effect */
.login-btn:active {
  transform: translateY(0);
  text-decoration: none;
}

.mobile-menu .login-btn {
  background: #2F5581;
  color: #ffffff !important;
  width: 100%;
  text-align: center;
  border-radius: 16px;
  margin-top: 10px;
}

/* Burger */
.burger{
  grid-column: 3;
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  justify-self: end;
}

.burger span{
  width: 24px;
  height: 2px;
  background: #333;
  transition: .3s ease;
}

/* Mobile Menu */
.mobile-menu{
  display: none;
  flex-direction: column;
  background: #f4f4f6;
  padding: 20px 24px;
  gap: 14px;
}

.mobile-menu a{
  text-decoration: none;
  font-weight: 60000;
  font-size: 16px;
  color: #333;
  padding: 10px 0;
}

.mobile-menu a.active{
  color: #000;
}

/* Responsive */
@media (max-width: 900px){

  .nav-links{
    display: none;
  }

  .burger{
    display: flex;
  }

  .mobile-menu.open{
    display: flex;
  }
}


/* HERO */
.hero{ padding: 80px 0 88px; background: #dcdcdc;}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}
.kicker{
  margin: 0 0 10px;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: .2px;
  line-height: 1.0;
}
.brand{ font-weight: 800; }
.subcopy{
  margin: 12px 0 18px;
  color: var(--muted);
  font-style: italic;
  max-width: 48ch;
}

.cta-row{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.btn{
  border: 0;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  padding: 12px 18px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.btn:hover{ background: var(--blue-dark); }
.btn:focus{ outline: 3px solid rgba(47,95,134,.25); outline-offset: 2px; }

.btn.disabled,
.btn:disabled {
  background: #e5e7eb;        /* light grey */
  color: #9ca3af;             /* muted text */
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;                 /* avoid washed-out look */
  align-items: center;
}

.btn.disabled:hover,
.btn:disabled:hover {
  transform: none;
}

.mockup-img{
  width: min(600px, 100%);
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* SECTION TITLES */
.section{ padding: 48px 0; }
.title{
  text-align: center;
  font-weight: 300;
  font-size: 44px;
  margin: 0 0 28px;
  letter-spacing: .2px;
}
.title.left{ text-align: left; margin-bottom: 18px; }

/* FEATURES */
.features{ padding-top: 30px; }
.features-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  text-align: center;
}
.feat h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #3b3b3b;
}
.feat p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.churches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.church {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.church img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.church span {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* FULL-WIDTH STRIP */
.strip{
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 20px 0;
  margin: 40px 0 0;
}
.strip .strip-title{
  text-align: center;
  font-weight: 700;
  margin: 0 0 14px;
  font-size: 14px;
}
.strip .churches{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  opacity: .95;
}

/* WHY USE */
.why{ padding-top: 10px; }
.why-grid{
  display: grid;
  max-width: 720px;
  padding-left: 0;
  margin-left: 0;
  margin: 0 auto;
}
.why-item strong{
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  letter-spacing: .2px;
  padding-left: 0;
  margin-left: 0;
}
.why-item span{ color: var(--muted); font-size: 12.5px; }

/* TESTIMONIAL STRIP */
.strip.testimonials{ margin-top: 36px; padding: 34px 0; }
.strip.testimonials .strip-title{ margin: 0; font-size: 14px; }

/* FAQ */
.faq{
  background: var(--blue);
  color: var(--white);
  padding: 46px 0;
}
.faq h2{
  margin: 0 0 18px;
  font-weight: 300;
  font-size: 44px;
  letter-spacing: .2px;
}
.faq-list{
  display: grid;
  gap: 16px;
  margin: 0 auto;
}

.qa {border-bottom: 1px solid rgba(255, 255, 255, 0.1);}

.qa h4{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
}
.qa p{
  margin: 0;
  font-size: 12.5px;
  opacity: .9;
  line-height: 1.4;
  max-width: 90ch;
}

.qa-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--white);
}

.qa-question .icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--white);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.qa-answer p {
  padding-bottom: 1rem;
  margin: 0;
}

.qa.active .qa-answer {
  max-height: 300px;
}

.qa.active .icon {
  transform: rotate(45deg);
}

/* JOIN */
.join{ padding: 46px 0 40px; }
.join h2{
  text-align: center;
  font-weight: 300;
  font-size: 40px;
  margin: 0 0 6px;
  line-height: 1.05;
}
.join h2 em{ font-style: italic; font-weight: 400; }
.join p{
  text-align: center;
  margin: 0 0 18px;
  color: var(--muted);
  font-style: italic;
  font-size: 12.5px;
}
.join .cta-row{ justify-content: center; }

/* LEGAL / TERMS PAGES */
.terms {
  padding: 60px 0;
  line-height: 1.65;
}

.terms .container {
  max-width: 900px;
}

/* H1 */
.terms h1 {
  font-size: 42px;
  font-weight: 300;
  margin: 0 0 0px;
  letter-spacing: .2px;
  margin-bottom: 0;
  text-align: left
}

/* H2 */
.terms h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 40px 0 16px;
  margin-bottom: 0;
  text-align: left
}

/* H3 */
.terms h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 12px;
  margin-bottom: 0;
  text-align: left
}

/* H4 */
.terms h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0px 0 8px;
  margin-bottom: 0;
  text-align: left
}

/* Paragraphs */
.terms p {
  margin: 0 0px;
  color: var(--text);
  margin-bottom: 0;
}

/* Ordered Lists */
.terms ol {
  margin: 0 0 20px 22px;
  padding-left: 0;
}

.terms ol li {
  margin-bottom: 8px;
}

/* Unordered Lists */
.terms ul {
  margin: 0 0 20px 22px;
  padding-left: 0;
  list-style: outside disc;
  margin-bottom: 0px;
}

.terms ul li {
  margin-bottom: 0px;
}

/* Links */
.terms a {
  color: var(--blue);
  text-decoration: underline;
}

.terms a:hover {
  opacity: 0.8;
}

/* FOOTER */
.footer{
  background: var(--blue);
  color: var(--white);
  padding: 26px 0 0;
  margin-top: 18px;
}
.footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding-bottom: 22px;
}
.footer h4{ margin: 0 0 6px; font-size: 13px; font-weight: 800; }
.footer p, .footer li{ margin: 0; font-size: 12.5px; opacity: .9; }
.footer ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}
.bottom-bar{
  background: #111;
  color: #ddd;
  text-align: center;
  font-size: 12px;
  padding: 12px 0;
  margin-top: 6px;
}
.bottom-bar a{ color: #ddd; opacity: .95; }

/* MODAL */
.modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}
.modal-backdrop.open{ display: flex; }
.modal{
  width: min(980px, 100%);
  max-height: 90vh;              /* 🔥 limit height to viewport */
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.12);
  display: flex;                 /* 🔥 allow column layout */
  flex-direction: column;
  overflow: hidden;              /* keep header fixed */
}
.modal-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fafafa;
  border-bottom: 1px solid rgba(0,0,0,.10);
}
.modal-title{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #222;
}
.modal-actions{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.modal-actions .small-btn{
  border: 0;
  background: rgba(47,95,134,.12);
  color: #1b3f5a;
  font-weight: 800;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 12px;
}
.modal-actions .small-btn:hover{ background: rgba(47,95,134,.18); }

.close-x{
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
}
.close-x:hover{ background: rgba(0,0,0,.06); }

.modal-body{
  padding: 14px;
  background: #fff;
  overflow-y: auto;              /* 🔥 allow vertical scroll */
  max-height: calc(90vh - 80px); /* 🔥 subtract header height */
}

.modal-loading{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: #666;
}

.modal-footer{
  padding: 10px 14px;
  background: #fafafa;
  border-top: 1px solid rgba(0,0,0,.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-footer .note{
  font-size: 12px;
  color: #4b4b4b;
}
.countdown{
  font-size: 12px;
  font-weight: 800;
  color: #1b3f5a;
  display: none;
}
.countdown.show{ display: inline-block; }

/* CONTACT SECTION */
.contact-hero{
  background: #f4f4f4;
  text-align: center;
  padding: 80px 0 60px;
}

.contact-quote{
  font-size: 64px;
  font-weight: 300;
  margin: 0 0 16px;
}

.contact-sub{
  font-size: 18px;
  opacity: .8;
  margin: 0;
}

/* ORANGE STRIP */
.contact-strip{
  background: #C04F2F;
  color: #ffffff;
  text-align: center;
  padding: 32px 0;
}

.contact-strip p{
  margin: 0;
  font-size: 16px;
  max-width: 900px;
  margin-inline: auto;
}

/* CONTACT GRID */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 40px 0;
  text-align: center;
}

.contact-card h3{
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-card p{
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Buttons */
.contact-btn{
  background: #2F5581;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover{
  background: #C04F2F;
  transform: translateY(-2px);
}

/* SUPPORT PAGE LAYOUT */
.support-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  width: 100%;
  min-height: calc(100vh - 80px);
  max-width: 100%;   /* 🔥 remove any fixed max width */
  margin: 0;
  padding: 0 80px;   /* optional breathing space */
  gap: 80px;
}

/* Sidebar */
.support-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.support-title {
  font-size: 18px;
  margin-bottom: 16px;
}

.support-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.support-nav a:hover {
  color: #2F5581;
}

.support-nav a.active {
  color: #2F5581;
  font-weight: 600;
}

/* Content */
.support-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-right: 10px;
}

.support-drawer {
  position: fixed;
  top: 0;
  left: 0px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 4px 0 20px rgba(0,0,0,0.08);
  padding: 100px 24px 40px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;            /* 👈 THIS FIXES IT */
  -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
}

.support-drawer.open {
  left: 0;
  transform: translateX(0);
}

.support-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1500;
}

.support-overlay.open {
  display: block;
}

.support-content {
  padding: 6px 0;
  width: 100%;
  max-width: 100%;  /* remove any 800px / 900px limits */
}

.support-content h1 {
  font-size: 42px;
  margin-top: 40px;   /* 🔥 add this */
  margin-bottom: 16px;
}

.support-content h2 {
  font-size: 28px;
  margin: 60px 0 12px;
}
.support-content h4 {
  font-size: 16px;
  margin: 20px 0 0px;
}

.support-content p {
  max-width: 75ch;
  line-height: 1.6;
  color: var(--muted);
}

/* Highlight Box */
.doc-highlight {
  background: #f4f6f9;
  border-left: 4px solid #2F5581;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 14px;
}

.doc-section {
  scroll-margin-top: 100px;
}

/* Sidebar Groups */
.nav-group {
  margin-bottom: 24px;
}

/* Subtitle inside sidebar */
.nav-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #9ca3af;
  margin: 18px 0 0px;
}

.nav-subsubtitle {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  color: #cbd5e1;
  margin: 5px 0 6px 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}
  
.nav-subsubtitle:hover {
    color: #2F5581;
  }

.nav-subsubtitle.active {
    color: #2F5581;
  }

.nav-subgroup a {
  padding-left: 18px;
  font-size: 13px;
  border-left: 2px solid transparent;
}

/* Active state refined */
.nav-subgroup a.active {
  border-left: 2px solid #2F5581;
  color: #2F5581;
  font-weight: 600;
}

/* Slight indent for links under subtitle */
.nav-group a {
  padding-left: 8px;
  border-left: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

/* Active state refinement */
.nav-group a.active {
  border-left: 2px solid #2F5581;
  padding-left: 6px;
}

.nav-subgroup {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  border-left: 2px;
}

.nav-links-nested {
  display: flex;
  flex-direction: column;
  margin-left: 36px; /* 🔥 this is the key */
  gap: 6px;
}


.nav-links-nested a {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-links-nested a:hover {
  color: var(--blue);
}

.nav-links-nested a.active {
  border-left: 2px solid var(--blue);
  padding-left: 6px;
  color: var(--blue);
  font-weight: 600;
}

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

.pricing-hero {
  text-align: center;
}

.pricing-section {
  padding-top: 20px;
}

.pricing-card {
  background: #fff;
  padding: 10px 30px 32px; /* 🔥 reduced top padding */
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card.featured {
  border: 2px solid var(--blue);
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 50px;
}

.plan-name {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0px;
}

.plan-price .period {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.plan-description {
  margin: 14px 0 18px;
  max-width: none;   /* 🔥 remove width constraint */
  color: var(--muted);
}

/* Table */
.pricing-table-wrapper {
  margin-top: 40px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table thead {
  background: var(--blue);
  color: #ffffff;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  width: 100%;
}

.plan-features li {
  padding: 14px 0;
  border-top: 1px solid #eee;
}

.plan-features li:first-child {
  border-top: none;
}

/* Row for tick + title */
.feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Tick */
.feature-tick {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

/* Title */
.feature-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

/* Description */
.feature-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.toggle-switch {
  width: 50px;
  height: 26px;
  background: #ddd;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: #fff;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch.active {
  background: var(--blue);
}

.toggle-switch.active::after {
  left: 26px;
}

.toggle-label {
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}

.toggle-label.active {
  font-weight: 600;
  color: var(--blue);
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
}

.pricing-table th {
  font-weight: 600;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table td:first-child {
  font-weight: 600;
  width: 220px;
}

.pricing-table tbody tr:hover {
  background: #f8fafc;
}

.pricing-hero .subcopy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.event-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-option {
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
}

.event-option.active {
  color: var(--blue);
  font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {

  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
  }

  .pricing-table td:first-child {
    font-weight: 700;
    margin-bottom: 6px;
  }

}

.pricing-hero .cta-row,
.pricing-card .cta-row,
.join .cta-row {
  display: flex;
  justify-content: center;
}

/* =========================
   SOLUTIONS PAGE
========================= */

.product-interactive{
position:relative;
margin-top:40px;
}

.product-img{
width:100%;
border-radius:12px;
display:block;
}

.image-overlay{
position:absolute;
inset:0;
background:#000;
opacity:0;
pointer-events:none;
transition:.3s;
border-radius:12px;
}

.image-overlay.active{
opacity:.45;
}

/* HOTSPOTS */

.hotspot{
position:absolute;
width:120px;
height:120px;
border-radius:50%;
cursor:pointer;
}

.hotspot::after{
content:"";
position:absolute;
inset:0;
border-radius:50%;
box-shadow:0 0 0 2px #fff;
opacity:.8;
}

/* approximate positions */

.hotspot.timeline{
left:3%;
top:20%;
}

.hotspot.media{
left:40%;
top:20%;
}

.hotspot.events{
left:8%;
bottom:12%;
}

.hotspot.news{
right:10%;
bottom:12%;
}

/* TOOLTIP */

.tooltip{
position:absolute;
background:#111;
color:#fff;
padding:10px 14px;
font-size:13px;
border-radius:6px;
max-width:240px;
pointer-events:none;
opacity:0;
transform:translateY(5px);
transition:.2s;
z-index:10;
}

.tooltip.show{
opacity:1;
transform:translateY(0);
}

/* FEATURE DETAIL */

.features-detail{
padding-top:60px;
}

.feature-detail{
max-width:700px;
margin:40px auto;
}

.feature-detail h3{
font-size:22px;
margin-bottom:10px;
}

.feature-detail p{
color:var(--muted);
line-height:1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .support-quick-links { grid-template-columns: repeat(2, 1fr); }
  .support-layout { grid-template-columns: 1fr; gap: 40px; }
  .support-sidebar { position: relative; top: 0; }
  .contact-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact-quote{ font-size: 48px; }
  .support-burger .support-page { display: block; }
  .support-sidebar { position: static; }
  .support-layout { grid-template-columns: 1fr; }
  .support-layout > .support-sidebar { display: none; }
  }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .mockup-wrap{ order: -1; }
  .features-grid{ grid-template-columns: repeat(2, 1fr); }
  .strip .churches{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: repeat(2, 1fr); }
  .kicker{ font-size: 40px; }
  .title{ font-size: 40px; }
  .faq h2{ font-size: 40px; }
  .nav-inner .login-btn { display: none; }
}

@media (max-width: 640px) {
  .support-quick-links {
    grid-template-columns: 1fr;
  }
  .support-layout {
    padding: 0 16px; /* standard mobile spacing */
  }

  .support-hero h1 {
    font-size: 36px;
  }
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-quote{
      font-size: 36px;
    }
  }

/* ========================
     SANCTUARY SCREENS COMPARISON
     Fully Scoped (No Conflicts)
  ========================= */
  .ss-compare {
    padding: 60px 0;
    background: #ffffff;
  }
  
  .ss-compare .ss-title {
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 10px;
  }
  
  .ss-compare .ss-subtitle {
    text-align: center;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 40px;
  }
  
  .ss-table-wrapper {
    overflow-x: auto;
  }
  
  .ss-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
  }
  
  .ss-table thead {
    background: var(--blue);
    color: #fff;
  }
  
  .ss-table th,
  .ss-table td {
    padding: 18px 20px;
    text-align: left;
    font-size: 14px;
  }
  
  .ss-table th {
    font-weight: 600;
  }
  
  .ss-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .ss-table tbody tr:last-child {
    border-bottom: none;
  }
  
  .ss-table tbody tr:hover {
    background: #f8fafc;
  }
  
  /* Highlight SanctuaryScreens column */
  .ss-table td:nth-child(3) {
    font-weight: 600;
    color: var(--blue);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ss-compare .ss-title {
      font-size: 32px;
    }
    .ss-table th,
    .ss-table td {
      padding: 14px;
      font-size: 13px;
    }
  }

@media (max-width: 560px){
  .features-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .kicker{ font-size: 34px; }
  .title{ font-size: 34px; }
  .faq h2{ font-size: 34px; }
  .join h2{ font-size: 32px; }
  .modal-body iframe{ height: 520px; }
  .logo-img{ width: 120px; }
  .logo-text{ font-size: 18px; font-weight: 600; }

  /* ✅ FULL WIDTH CTA */
  .cta-row{
    width: 100%;
  }

  .cta-row .btn{
    width: 100%;
    text-align: center;
  }
}