/* ================================================
   ORTHO LABS — BASE STYLES  (current.css verbatim)
   ================================================ */

.hero-content {
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E0F7FA;
  border: 1px solid #B2EBF2;
  border-radius: 99px;
  padding: 7px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #007D8C;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #0097A7;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

h1 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 900;
  color: #0C2240;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

h1 em {
  font-style: normal;
  color: #0097A7;
}

h2 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  color: #0C2240;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0C2240;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.two-col-body p {
  color: #374151;
  line-height: 1.72;
}

.section {
  padding: 90px 0;
}

.bg-gray {
  background: #FAF7F3;
}

.container {
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.section-header {
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16.5px;
  color: #64748B;
  max-width: 560px;
}

.section-header.center {
  text-align: center;
}

.section-header.center p {
  margin: 0 auto;
}

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

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #007D8C;
  background: #E0F7FA;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .15s;
}

.btn:active {
  transform: scale(.98);
}

.btn-primary {
  background: #E85D04;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(232,93,4,.30);
}

.btn-primary:hover {
  background: #C24901;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,.38);
}

.btn-outline {
  background: transparent;
  color: #0C2240;
  border: 2px solid #0097A7;
  box-shadow: none;
}

.btn-outline:hover {
  border-color: #0097A7;
  color: #0097A7;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
  border-radius: 10px;
}

.hero-sub {
  color: #374151;
  font-size: clamp(15px, 1.8vw, 17.5px);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748B;
  font-size: 13.5px;
  margin-bottom: 20px;
}

.hero-rating strong {
  color: #0C2240;
}

.stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 1px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: #64748B;
}

.hero-trust-item svg {
  width: 14px;
  height: 14px;
  stroke: #0097A7;
  fill: none;
  flex-shrink: 0;
}

.stats-inner {
  display: flex !important;
  flex-wrap: wrap !important;
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid #E2EAF4;
  transition: background .2s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: #FDF9F6;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  color: #0C2240;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 4px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid #B2EBF2;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 1px 3px rgba(12,34,64,.06), 0 2px 8px rgba(12,34,64,.06);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(12,34,64,.12), 0 2px 8px rgba(12,34,64,.06);
  transform: translateY(-3px);
  border-color: #0097A7;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #E0F7FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 26px;
}

.feature-card h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.feature-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, #B2EBF2 0%, #0097A7 50%, #B2EBF2 100%);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: #FFFFFF;
  border: 2px solid #0097A7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #0097A7;
  box-shadow: 0 0 0 6px #E0F7FA;
}

.step-card h4 {
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #64748B;
  max-width: 220px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12,34,64,.16), 0 4px 16px rgba(12,34,64,.08);
  aspect-ratio: 4/3;
  background: #FAF7F3;
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col-body h2 {
  margin-bottom: 16px;
}

.two-col-body p {
  margin-bottom: 20px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #374151;
}

.check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #0097A7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #B2EBF2;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 1px 3px rgba(12,34,64,.06), 0 2px 8px rgba(12,34,64,.06);
  transition: box-shadow .25s, transform .25s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(12,34,64,.08), 0 1px 3px rgba(12,34,64,.05);
  transform: translateY(-2px);
}

.t-stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.t-quote {
  font-size: 15px;
  line-height: 1.72;
  color: #374151;
  margin-bottom: 20px;
  font-style: italic;
}

.t-quote::before {
  content: '\201C';
  font-size: 36px;
  line-height: 0;
  vertical-align: -16px;
  color: #B2EBF2;
  font-style: normal;
  margin-right: 4px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #0C2240;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}

.t-name {
  font-weight: 700;
  font-size: 14.5px;
  color: #0C2240;
}

.t-role {
  font-size: 12.5px;
  color: #64748B;
}

.t-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #10B981;
  font-weight: 600;
  margin-top: 3px;
}

.cta-banner {
  background: linear-gradient(135deg, #C24901 0%, #E85D04 50%, #F07020 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-inner {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner .section-label {
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.95);
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #C24901 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.cta-banner .btn-primary:hover {
  background: #FDF9F6;
  color: #C24901 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}

.cta-banner-meta {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  margin-top: 16px;
}

.cta-banner-meta span::after {
  content: ' · ';
  opacity: .5;
}

.cta-banner-meta span:last-child::after {
  content: '';
}

@media (max-width: 900px) {
  .hero-content {
    padding-bottom: 40px;
  }
  .hero-actions {
    justify-content: center;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .steps-grid::before {
    display: none;
  }
  .two-col {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }
  .two-col-body {
    text-align: center;
  }
  .check-item {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .feature-card {
    text-align: center;
  }
  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .stats-inner {
    gap: 0 !important;
  }
  .stat-item {
    min-width: 130px;
    padding: 18px 12px;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-wrap: nowrap;
  }
  .hero-actions .btn-lg {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ── About Hero ── */
.about-hero {
  background: linear-gradient(130deg, #071628 0%, #0C2240 55%, #163556 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 160%;
  background: radial-gradient(ellipse, rgba(0,151,167,.18) 0%, transparent 65%);
  pointer-events: none;
}
.about-hero h1 { color: #FFFFFF; margin-bottom: 18px; }
.about-hero p  { color: rgba(255,255,255,.65); font-size: 18px; max-width: 560px; margin: 0 auto 36px; }

/* ── Section sizes ── */
.section-sm { padding: 56px 0; }

/* ── Two-col reverse (Philosophy section) ── */
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Mission stats ── */
.mission-stat { text-align: center; }
.mission-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #0097A7;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.mission-stat .lbl {
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── Values grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.value-card {
  background: #FFFFFF;
  border: 1px solid #E2EAF4;
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: 0 1px 3px rgba(12,34,64,.06), 0 2px 8px rgba(12,34,64,.06);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.value-card:hover {
  box-shadow: 0 4px 12px rgba(12,34,64,.08), 0 1px 3px rgba(12,34,64,.05);
  transform: translateY(-3px);
  border-color: #B2EBF2;
}
.value-icon {
  width: 56px; height: 56px;
  background: #E0F7FA;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
}
.value-card h4 { margin-bottom: 8px; font-size: 16px; }
.value-card p  { font-size: 14px; color: #64748B; line-height: 1.6; margin: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col.reverse { direction: ltr; }
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-hero {
  background: #F8FAFD;
  border-bottom: 1px solid #E2EAF4;
  padding: 64px 0 56px;
  text-align: center;
}
.contact-hero h1 { margin-bottom: 12px; }
.contact-hero p  { font-size: 17px; color: #64748B; max-width: 500px; margin: 0 auto; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.contact-card {
  background: #FFFFFF;
  border: 1px solid #E2EAF4;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(12,34,64,.06), 0 2px 8px rgba(12,34,64,.06);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.contact-card:hover {
  box-shadow: 0 4px 12px rgba(12,34,64,.08), 0 1px 3px rgba(12,34,64,.05);
  transform: translateY(-3px);
  border-color: #B2EBF2;
}
.contact-card-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.contact-card h3   { font-size: 17px; margin-bottom: 8px; }
.contact-card p    { font-size: 14px; color: #64748B; margin-bottom: 18px; line-height: 1.55; }
.contact-card .badge { font-size: 12px; color: #10B981; font-weight: 600; display: block; margin-top: 10px; }

/* ── Btn Teal ── */
.btn-teal {
  background: #0097A7;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(0,151,167,.28);
}
.btn-teal:hover {
  background: #007D8C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,151,167,.36);
}

/* ── FAQ ── */
.faq-section { max-width: 720px; margin: 0 auto; }
.faq-section h2 { text-align: center; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #E2EAF4;
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #0C2240;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background .18s;
  border: none;
}
.faq-q:hover { background: #F8FAFD; }
.faq-q .arrow { font-size: 18px; color: #0097A7; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-item.open .faq-q { background: #E0F7FA; color: #007D8C; }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: #374151;
  line-height: 1.7;
  border-top: 1px solid #F0F4F8;
}
.faq-item.open .faq-a { display: block; }

/* ================================================
   PRIVACY POLICY PAGE
   ================================================ */
.policy-hero {
  background: #F8FAFD;
  border-bottom: 1px solid #E2EAF4;
  padding: 64px 0 56px;
  text-align: center;
}
.policy-hero h1 { margin-bottom: 12px; }
.policy-hero p  { font-size: 17px; color: #64748B; max-width: 500px; margin: 0 auto; }

.policy-body { max-width: 760px; margin: 0 auto; }
.policy-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0C2240;
  margin: 40px 0 12px;
  padding-top: 40px;
  border-top: 1px solid #E2EAF4;
}
.policy-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.policy-body p { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 14px; }
.policy-body ul { margin: 0 0 14px 0; padding-left: 20px; }
.policy-body ul li { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 6px; }
.policy-body a { color: #0097A7; text-decoration: none; }
.policy-body a:hover { text-decoration: underline; }
.policy-meta {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #E2EAF4;
}

.policy-highlight {
  background: #E0F7FA;
  border-left: 3px solid #0097A7;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #0C2240;
  font-weight: 600;
}

.below-content {
  background-color: #E0F7FA;
}

/* Features Section (alternate rule from current.css) */
.feature-card .icon-circle {
  width: 60px; height: 60px;
  background: #fff3e8;
  color: #E85D04;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.feature-card h3 { font-size: 20px; margin-bottom: 15px; }

/* entry-content drop cap */
.entry-content::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.2em;
  line-height: 0.8;
  float: left;
  margin: 6px 10px 0 0;
  color: #1a3a6b;
  font-weight: 700;
}


/* ================================================
   NEUROFLEX PRO PAGE — unique classes (nfp- prefix)
   ================================================ */

/* ── Reset & page base ── */
.nfp-page *, .nfp-page *::before, .nfp-page *::after { box-sizing: border-box; }
.nfp-page { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; color: #374151; background: #FFFFFF; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.nfp-page a { text-decoration: none; color: inherit; }
.nfp-page img, .nfp-page video { max-width: 100%; display: block; }

/* ── Promo bar ── */
.nfp-promo-bar {
  background: #0C2240;
  color: #FFFFFF;
  text-align: center;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nfp-promo-bar span { color: #FFD700; margin: 0 6px; }

/* ── Site header ── */
.nfp-site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E2EAF4;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(12,34,64,.06);
}
.nfp-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.nfp-site-logo { height: 48px; width: auto; }

/* ── Hero section ── */
.nfp-hero {
  background: #FFFFFF;
  padding: 72px 0 80px;
}
.nfp-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nfp-hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12,34,64,.16), 0 4px 16px rgba(12,34,64,.08);
  aspect-ratio: 1/1;
  background: #FAF7F3;
}
.nfp-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.nfp-hero-warning {
  font-size: 13px;
  color: #B45309;
  font-weight: 600;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.nfp-hero-trust-row {
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
}

/* ── Trust bar ── */
.nfp-trust-bar { background: #0C2240; padding: 0; }
.nfp-trust-bar .stat-item { border-right-color: rgba(255,255,255,.12); }
.nfp-trust-bar .stat-item:hover { background: rgba(255,255,255,.04); }
.nfp-trust-bar .stat-value { color: #FFFFFF; }
.nfp-trust-bar .stat-label { color: rgba(255,255,255,.6); }

/* ── Steps section ── */
.nfp-steps-section { background: #FAF7F3; }
.nfp-step-video {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 1px 3px rgba(12,34,64,.06), 0 2px 8px rgba(12,34,64,.06);
}
.nfp-step-video video { width: 100%; height: 100%; object-fit: cover; }

/* ── Clinical section ── */
.nfp-clinical-section { background: #F8FAFD; }
.nfp-clinical-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nfp-clinical-body h2 { margin-bottom: 16px; }
.nfp-clinical-body p { color: #374151; line-height: 1.72; margin-bottom: 20px; }
.nfp-clinical-body blockquote {
  border-left: 3px solid #0097A7;
  background: #E0F7FA;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  font-size: 15px;
  font-style: italic;
  color: #0C2240;
  margin-top: 24px;
}
.nfp-clinical-body blockquote cite {
  display: block;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 700;
  color: #0097A7;
  margin-top: 10px;
}
.nfp-clinical-video {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12,34,64,.16), 0 4px 16px rgba(12,34,64,.08);
  aspect-ratio: 4/3;
}
.nfp-clinical-video video { width: 100%; height: 100%; object-fit: cover; }

/* ── Mechanism section ── */
.nfp-mechanism-section { padding: 90px 0; }
.nfp-mechanism-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nfp-mechanism-video {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12,34,64,.16), 0 4px 16px rgba(12,34,64,.08);
  aspect-ratio: 4/3;
}
.nfp-mechanism-video video { width: 100%; height: 100%; object-fit: cover; }
.nfp-mechanism-body > p { color: #374151; line-height: 1.72; margin-bottom: 28px; }
.nfp-mechanism-steps { display: flex; flex-direction: column; gap: 20px; }
.nfp-mech-step { display: flex; gap: 18px; }
.nfp-mech-num {
  width: 36px; height: 36px; min-width: 36px;
  background: #0097A7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #FFFFFF;
  margin-top: 2px;
}
.nfp-mech-step h4 { margin-bottom: 4px; font-size: 15px; }
.nfp-mech-step p  { font-size: 13.5px; color: #64748B; line-height: 1.6; margin: 0; }

/* ── Science section (dark) ── */
.nfp-science-section {
  background: linear-gradient(130deg, #071628 0%, #0C2240 55%, #163556 100%);
  position: relative;
  overflow: hidden;
}
.nfp-science-section::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 160%;
  background: radial-gradient(ellipse, rgba(0,151,167,.18) 0%, transparent 65%);
  pointer-events: none;
}
.nfp-science-section .section-label {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.nfp-science-section h2 { color: #FFFFFF; }
.nfp-science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.nfp-science-card {
  background: rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}
.nfp-science-icon { font-size: 38px; margin-bottom: 14px; }
.nfp-science-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0097A7;
  margin-bottom: 10px;
}
.nfp-science-badge {
  display: inline-block;
  font-size: 12px;
  color: #FFFFFF;
  background: #0097A7;
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.nfp-science-card video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}
.nfp-science-card p { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.6; margin: 0; }

/* ── Offer / Pricing section ── */
.nfp-offer-section { background: #FAF7F3; }
.nfp-offer-box {
  background: #FFFFFF;
  border: 2px solid #B2EBF2;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(12,34,64,.12), 0 2px 8px rgba(12,34,64,.06);
}
.nfp-offer-bogo {
  background: #0C2240;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  letter-spacing: .03em;
}
.nfp-offer-box h3 { margin-bottom: 8px; }
.nfp-offer-guarantee { font-size: 14px; color: #64748B; margin-bottom: 20px; }
.nfp-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.nfp-price-old {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #64748B;
  text-decoration: line-through;
}
.nfp-price-new {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #0C2240;
}
.nfp-price-badge {
  background: #FEF3C7;
  color: #92400E;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
}
.nfp-price-bogo-note { font-size: 13.5px; color: #64748B; margin-bottom: 24px; }
.nfp-offer-check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.nfp-offer-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #374151;
}
.nfp-offer-check-icon {
  width: 26px; height: 26px; min-width: 26px;
  background: #E0F7FA;
  border: 1.5px solid #0097A7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: #0097A7;
  font-weight: 800;
}
.nfp-offer-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #E85D04;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 28px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(232,93,4,.35);
  transition: transform .2s, box-shadow .2s, background .15s;
  letter-spacing: .01em;
  text-decoration: none;
}
.nfp-offer-btn:hover {
  background: #C24901;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,4,.42);
}
.nfp-offer-meta {
  font-size: 13px;
  color: #64748B;
  text-align: center;
  margin-top: 14px;
}
.nfp-offer-meta strong { color: #0C2240; }

/* ── Guarantee ── */
.nfp-guarantee-section { padding: 64px 0; }
.nfp-guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #E0F7FA;
  border: 1.5px solid #B2EBF2;
  border-radius: 24px;
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.nfp-guarantee-icon { font-size: 56px; flex-shrink: 0; line-height: 1; }
.nfp-guarantee-box h3 { margin-bottom: 10px; }
.nfp-guarantee-box p { font-size: 15px; color: #374151; line-height: 1.72; }

/* ── Testimonials ── */
.nfp-t-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.nfp-t-date { font-size: 11px; color: #64748B; margin-bottom: 10px; }
.nfp-t-body { font-size: 13.5px; color: #374151; line-height: 1.6; margin: 0; }

/* ── Rating summary ── */
.nfp-rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #E0F7FA;
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.nfp-rating-big {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #0C2240;
  line-height: 1;
}
.nfp-rating-stars { color: #F59E0B; font-size: 22px; letter-spacing: 2px; }
.nfp-rating-count { font-size: 14px; color: #64748B; font-weight: 500; }

/* ── Deep reviews ── */
.nfp-deep-review {
  background: #FFFFFF;
  border: 1px solid #E2EAF4;
  border-radius: 16px;
  padding: 32px 30px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(12,34,64,.06), 0 2px 8px rgba(12,34,64,.06);
}
.nfp-deep-review blockquote {
  font-size: 15.5px;
  color: #374151;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}
.nfp-deep-review blockquote::before {
  content: '\201C';
  font-size: 42px;
  line-height: 0;
  vertical-align: -18px;
  color: #B2EBF2;
  font-style: normal;
  margin-right: 4px;
}
.nfp-deep-review-author { font-weight: 700; font-size: 14px; color: #0C2240; }
.nfp-deep-review-meta   { font-size: 12px; color: #64748B; margin-top: 3px; }
.nfp-deep-review-verified { font-size: 12px; color: #10B981; font-weight: 600; margin-top: 2px; }

/* ── FAQ (page-specific overrides) ── */
.nfp-faq-intro { text-align: center; color: #64748B; margin-bottom: 40px; }

/* ── Footer ── */
.nfp-site-footer {
  background: #0C2240;
  padding: 48px 0 32px;
}
.nfp-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.nfp-footer-links a { color: rgba(255,255,255,.7); font-size: 13.5px; transition: color .15s; }
.nfp-footer-links a:hover { color: #FFFFFF; }
.nfp-footer-copy { text-align: center; color: rgba(255,255,255,.5); font-size: 13px; margin-bottom: 20px; }
.nfp-footer-disclaimer {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
  line-height: 1.65;
}

/* ── Sticky bottom bar ── */
.nfp-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0C2240;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.nfp-sticky-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nfp-sticky-bar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}
.nfp-sticky-bar-sub { font-size: 12px; color: rgba(255,255,255,.6); }

/* Sticky bar body clearance */
body { padding-bottom: 70px; }
@media (max-width: 640px) { body { padding-bottom: 56px; } }
@media (max-width: 900px) {
  .nfp-hero-inner,
  .nfp-clinical-inner,
  .nfp-mechanism-inner { grid-template-columns: 1fr; gap: 36px; }
  .nfp-hero-img-wrap { display: none; }
  .nfp-science-grid { grid-template-columns: 1fr; }
  .nfp-rating-summary { justify-content: center; }
  .nfp-guarantee-box { flex-direction: column; gap: 16px; padding: 28px 24px; }
  .nfp-faq-deep-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .nfp-price-row { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 640px) {
  /* Spacing */
  .section { padding: 48px 0; }
  .nfp-hero { padding: 40px 0 48px; }
  .nfp-guarantee-section { padding: 40px 0; }

  /* Offer box */
  .nfp-offer-box { padding: 24px 16px; }
  .nfp-offer-bogo { font-size: 12px; padding: 8px 14px; }
  .nfp-price-row { flex-wrap: wrap; gap: 8px; align-items: center; }
  .nfp-price-old { font-size: 16px; }
  .nfp-price-new { font-size: 28px; }
  .nfp-price-badge { font-size: 12px; padding: 4px 8px; }
  .nfp-price-bogo-note { font-size: 12px; }
  .nfp-offer-btn { font-size: 15px; padding: 16px 20px; }
  .nfp-offer-meta { font-size: 12px; }

  /* Sticky bar — compact single row */
  .nfp-sticky-bar-inner {
    flex-direction: row;
    gap: 10px;
    padding: 10px 14px;
    align-items: center;
  }
  .nfp-sticky-bar-title { font-size: 11px; line-height: 1.3; }
  .nfp-sticky-bar-sub { display: none; }
  .nfp-sticky-bar-inner .btn { font-size: 12px; padding: 10px 14px; white-space: nowrap; flex-shrink: 0; }

  /* Science grid */
  .nfp-science-grid { grid-template-columns: 1fr; }

  /* Rating summary */
  .nfp-rating-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
  }
  .nfp-rating-big { font-size: 38px; }
  .nfp-rating-summary > div:last-child { margin-left: 0 !important; max-width: 100% !important; }

  /* Guarantee */
  .nfp-guarantee-box { padding: 20px 16px; }
  .nfp-guarantee-icon { font-size: 36px; }

  /* FAQ */
  .faq-q { font-size: 13px; padding: 14px 14px; }
  .faq-a { font-size: 13px; padding: 0 14px 14px; }
  .faq-q .arrow { font-size: 14px; }

  /* Deep reviews */
  .nfp-deep-review { padding: 20px 16px; }
  .nfp-deep-review blockquote { font-size: 14px; }

  /* Trust bar */
  .nfp-trust-bar .stats-inner { flex-wrap: wrap; }
  .nfp-trust-bar .stat-item {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 14px 12px;
  }
  .nfp-trust-bar .stat-value { font-size: 14px; }
  .nfp-trust-bar .stat-label { font-size: 10px; }

  /* Steps */
  .nfp-step-video { aspect-ratio: 16/9; }

  /* CTA banner */
  .cta-banner-inner { padding: 48px 20px; }
  .cta-banner h2 { font-size: clamp(22px, 6vw, 34px); }

  /* Footer */
  .nfp-footer-links { gap: 14px; justify-content: center; }
  .nfp-footer-links a { font-size: 12px; }

  /* Promo bar */
  .nfp-promo-bar { font-size: 11px; padding: 10px 16px; }

  /* Hero */
  .nfp-hero-inner { padding: 0 16px; }
  .hero-content { text-align: center; }
  .check-list { text-align: left; }
  .hero-actions { justify-content: center; }
}
