/*
 Theme Name:   MedEdPrep v2.5
 Theme URI:    https://www.mededprep.com
 Description:  MedEdPrep v2.5 redesign - child theme of theme-mededprep
 Author:       MedEdPrep
 Author URI:   https://www.mededprep.com
 Template:     theme-mededprep
 Version:      2.5.1
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  theme-mededprep-child
*/

/* ============================================================
   Nav Dots (shared across all v2.5 pages)
   ============================================================ */
.nav-dots {
   position: fixed;
   right: 1.5rem;
   top: 50%;
   transform: translateY(-50%);
   z-index: 1000;
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
}
.nav-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: rgba(255,255,255,0.1);
   border: 1.5px solid rgba(255,255,255,0.25);
   cursor: pointer;
   transition: all 0.3s ease;
   position: relative;
}
.nav-dot:hover::after, .nav-dot.active::after {
   content: attr(title);
   position: absolute;
   right: 20px;
   top: 50%;
   transform: translateY(-50%);
   font-size: 11px;
   font-weight: 600;
   color: rgba(255,255,255,0.7);
   white-space: nowrap;
   pointer-events: none;
}
.nav-dot:hover, .nav-dot.active {
   background: #53B6CD;
   border-color: #53B6CD;
   transform: scale(1.3);
   box-shadow: 0 0 12px rgba(83,182,205,0.4);
}
@media (max-width: 768px) {
   .nav-dots { display: none; }
}

/* ============================================================
   Pricing page — FAQ accordion
   ============================================================ */
.faq-section details {
   background: rgba(255,255,255,0.05);
   border: 1px solid rgba(255,255,255,0.15);
   border-radius: 10px;
   margin-bottom: 12px;
   overflow: hidden;
}
.faq-section details[open] {
   border-color: rgba(245, 199, 68, 0.4);
}
.faq-section summary {
   padding: 18px 24px;
   cursor: pointer;
   font-size: 17px;
   font-weight: 600;
   color: #fff;
   list-style: none;
   position: relative;
   padding-right: 48px;
}
.faq-section summary::-webkit-details-marker {
   display: none;
}
.faq-section summary::after {
   content: '+';
   position: absolute;
   right: 24px;
   top: 50%;
   transform: translateY(-50%);
   font-size: 22px;
   color: #F5C744;
   font-weight: 300;
   transition: transform 0.2s ease;
}
.faq-section details[open] summary::after {
   content: '\2212';
}
.faq-section details p {
   padding: 0 24px 18px 24px;
   margin: 0;
   color: rgba(255,255,255,0.8);
   font-size: 15px;
   line-height: 1.6;
}

/* ============================================================
   Pricing page — newsletter form
   ============================================================ */
.newsletter-form {
   display: flex;
   gap: 10px;
   max-width: 420px;
   margin: 0 auto;
}
.newsletter-form input[type="email"] {
   flex: 1;
   padding: 10px 16px;
   border-radius: 6px;
   border: 1px solid rgba(255,255,255,0.3);
   background: rgba(255,255,255,0.1);
   color: #fff;
   font-size: 14px;
}
.newsletter-form input[type="email"]::placeholder {
   color: rgba(255,255,255,0.5);
}
.newsletter-form button {
   padding: 10px 20px;
   border-radius: 6px;
   border: none;
   background: #F5C744;
   color: #1a1a2e;
   font-weight: 600;
   font-size: 14px;
   cursor: pointer;
   white-space: nowrap;
}
.newsletter-form button:hover {
   background: #e0b53d;
}

/* ============================================================
   Pricing page — swiper nav override for mobile
   ============================================================ */
.price-holder-wraper .swiper-button-next,
.price-holder-wraper .swiper-button-prev {
   display: none;
   visibility: hidden;
}
@media (max-width: 767px) {
   .plan-section .swiper-container {
      padding-top: 120px;
   }
   .price-holder-wraper .swiper-button-next,
   .price-holder-wraper .swiper-button-prev {
      display: flex;
      visibility: visible;
      width: 60px;
      height: 60px;
      background: #fff;
      border-radius: 100%;
      top: 40px;
   }
   .price-holder-wraper .swiper-button-next:after,
   .price-holder-wraper .swiper-button-prev:after {
      font-size: 26px;
   }
   .price-holder-wraper .swiper-button-prev {
      left: 50%;
      right: auto;
      margin-left: -70px;
   }
   .price-holder-wraper .swiper-button-next {
      left: 50%;
      margin-left: 10px;
   }
}

/* ============================================================
   Contact page — inquiry pills
   ============================================================ */
.inquiry-pills {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   justify-content: center;
   margin-bottom: 20px;
}
.inquiry-pill {
   padding: 12px 24px;
   border: 2px solid rgba(83, 182, 205, 0.4);
   border-radius: 30px;
   background: rgba(83, 182, 205, 0.08);
   color: #fff;
   font-size: 15px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   user-select: none;
}
.inquiry-pill:hover {
   border-color: #53B6CD;
   background: rgba(83, 182, 205, 0.15);
}
.inquiry-pill.active {
   border-color: #53B6CD;
   background: #53B6CD;
   color: #fff;
}
.inquiry-message {
   min-height: 48px;
   padding: 14px 20px;
   background: rgba(83, 182, 205, 0.08);
   border-left: 3px solid #53B6CD;
   border-radius: 6px;
   color: rgba(255, 255, 255, 0.85);
   font-size: 15px;
   margin-bottom: 30px;
   transition: opacity 0.3s ease;
}

/* Contact page — form styling */
.contact-form-section .form-control {
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(255, 255, 255, 0.15);
   border-radius: 8px;
   color: #fff;
   padding: 14px 18px;
   font-size: 15px;
   transition: border-color 0.3s ease;
}
.contact-form-section .form-control:focus {
   border-color: #53B6CD;
   background: rgba(255, 255, 255, 0.08);
   box-shadow: 0 0 0 3px rgba(83, 182, 205, 0.15);
   color: #fff;
   outline: none;
}
.contact-form-section .form-control::placeholder {
   color: rgba(255, 255, 255, 0.4);
}
.contact-form-section label {
   color: rgba(255, 255, 255, 0.75);
   font-size: 14px;
   font-weight: 600;
   margin-bottom: 6px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}
.contact-form-section textarea.form-control {
   min-height: 140px;
   resize: vertical;
}
.btn-submit-contact {
   background: #53B6CD;
   color: #fff;
   border: none;
   border-radius: 30px;
   padding: 14px 40px;
   font-size: 16px;
   font-weight: 700;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}
.btn-submit-contact:hover {
   background: #42a0b5;
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(83, 182, 205, 0.3);
}
.response-note {
   color: rgba(255, 255, 255, 0.5);
   font-size: 14px;
   margin-top: 12px;
}
.alt-contact-section {
   background: rgba(0, 0, 0, 0.3);
   padding: 50px 0;
}
.alt-contact-card {
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 12px;
   padding: 30px;
   text-align: center;
   transition: border-color 0.3s ease;
   height: 100%;
}
.alt-contact-card:hover {
   border-color: rgba(83, 182, 205, 0.3);
}
.alt-contact-card h4 {
   color: #fff;
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 10px;
}
.alt-contact-card p {
   color: rgba(255, 255, 255, 0.65);
   font-size: 15px;
   margin-bottom: 15px;
}
.alt-contact-card a {
   color: #53B6CD;
   text-decoration: none;
   font-weight: 600;
}
.alt-contact-card a:hover {
   color: #42a0b5;
   text-decoration: underline;
}
.quick-links-section {
   padding: 50px 0 60px;
}
.quick-link-item {
   display: block;
   color: #53B6CD;
   font-size: 16px;
   font-weight: 600;
   padding: 10px 0;
   text-decoration: none;
   transition: color 0.2s ease, padding-left 0.2s ease;
}
.quick-link-item:hover {
   color: #42a0b5;
   padding-left: 8px;
   text-decoration: none;
}
.form-required {
   color: #53B6CD;
}

/* ============================================================
   Programs page
   ============================================================ */
.programs-card {
   background: rgba(255,255,255,0.05);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 12px;
   padding: 30px 25px;
   height: 100%;
   color: #fff;
   transition: transform 0.3s ease, border-color 0.3s ease;
}
.programs-card:hover {
   transform: translateY(-5px);
   border-color: #53B6CD;
}
.programs-card .card-icon {
   width: 56px;
   height: 56px;
   border-radius: 12px;
   background: rgba(83,182,205,0.15);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   font-size: 24px;
   color: #53B6CD;
}
.programs-card h4 {
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 12px;
   color: #fff;
}
.programs-card p {
   font-size: 15px;
   color: rgba(255,255,255,0.85);
   margin-bottom: 0;
}
.step-number {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: linear-gradient(135deg, #53B6CD, #3a8fa3);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   font-weight: 700;
   color: #fff;
   margin: 0 auto 16px;
   flex-shrink: 0;
}
.pricing-preview-card {
   background: rgba(255,255,255,0.05);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 12px;
   padding: 35px 30px;
   text-align: center;
   height: 100%;
   color: #fff;
   transition: transform 0.3s ease, border-color 0.3s ease;
}
.pricing-preview-card:hover {
   transform: translateY(-5px);
   border-color: #53B6CD;
}
.pricing-preview-card.featured {
   border-color: #53B6CD;
   background: rgba(83,182,205,0.08);
}
.pricing-preview-card h4 {
   color: #fff;
}
.pricing-preview-card .price-amount {
   font-size: 36px;
   font-weight: 700;
   color: #53B6CD;
}
.pricing-preview-card .price-unit {
   font-size: 16px;
   color: rgba(255,255,255,0.7);
   font-weight: 400;
}
.pricing-preview-card li {
   color: rgba(255,255,255,0.9);
}
.feature-include-card {
   background: rgba(255,255,255,0.04);
   border: 1px solid rgba(255,255,255,0.08);
   border-radius: 10px;
   padding: 24px 20px;
   height: 100%;
   color: #fff;
   transition: border-color 0.3s ease;
}
.feature-include-card:hover {
   border-color: rgba(83,182,205,0.4);
}
.feature-include-card h5 {
   font-size: 17px;
   font-weight: 700;
   margin-bottom: 8px;
   color: #53B6CD;
}
.feature-include-card p {
   font-size: 14px;
   color: rgba(255,255,255,0.8);
   margin-bottom: 0;
}
.data-list li {
   position: relative;
   padding-left: 28px;
   margin-bottom: 14px;
   font-size: 15px;
   color: rgba(255,255,255,0.9);
}
.data-list li::before {
   content: "\f058";
   font-family: "Line Awesome Free";
   font-weight: 900;
   position: absolute;
   left: 0;
   color: #53B6CD;
   font-size: 18px;
}
.case-study-placeholder {
   background: rgba(83,182,205,0.06);
   border: 1px dashed rgba(83,182,205,0.3);
   border-radius: 12px;
   padding: 40px 30px;
   text-align: center;
   color: #fff;
}
.credential-bar p {
   color: #fff;
}
.credential-bar p strong {
   color: #fff;
}
.newsletter-input-group {
   max-width: 420px;
   margin: 0 auto;
}
.newsletter-input-group input {
   background: rgba(255,255,255,0.1);
   border: 1px solid rgba(255,255,255,0.2);
   color: #fff;
   border-radius: 6px 0 0 6px;
   padding: 10px 16px;
   font-size: 14px;
}
.newsletter-input-group input::placeholder {
   color: rgba(255,255,255,0.5);
}
.newsletter-input-group .btn {
   border-radius: 0 6px 6px 0;
}

/* ============================================================
   Footer — v2.5.1 overrides (EKG strip + restructured footer)
   ============================================================ */

/* EKG Transition Strip */
.footer-ekg-strip {
   display: block;
   width: 100%;
   line-height: 0;
   font-size: 0;
   overflow: hidden;
   background: linear-gradient(253.05deg, #2b0b3c 1.75%, #071d3b 29.21%, #071d3b 66.68%, #250f3c 100.04%);
   position: relative;
   z-index: 1;
}
.footer-ekg-strip img {
   display: block;
   width: 100%;
   height: auto;
   max-height: 140px;
   object-fit: cover;
   object-position: top center;
}
@media (max-width: 767px) {
   .footer-ekg-strip img { max-height: 80px; }
}
@media (min-width: 768px) and (max-width: 1199px) {
   .footer-ekg-strip img { max-height: 110px; }
}

/* Footer Overrides */
footer.footer .footer-bottom-img { display: none !important; }
footer.footer { position: relative; z-index: 2; }
footer.footer .footer-bottom {
   background: linear-gradient(248.14deg, #2B0B3C 9.29%, #071D3B 34.81%, #071D3B 69.63%, #250F3C 100.64%);
   padding: 40px 0 35px;
   position: relative;
}
.footer-logo-wrap .navbar-brand { display: inline-block; margin-bottom: 5px; }
.footer-logo-wrap .navbar-brand img { width: 170px; height: auto; }
.footer-newsletter-text { font-size: 13px; color: rgba(255, 255, 255, 0.6); line-height: 1.5; margin-bottom: 10px; }
.footer-newsletter-form { display: flex; justify-content: center; gap: 8px; max-width: 320px; margin: 0 auto; }
.footer-newsletter-form input[type="email"] { max-width: 220px; height: 38px; font-size: 13px; border-radius: 5px; border: none; padding: 6px 12px; color: #000; flex: 1; }
.footer-newsletter-form .btn-subscribe { background: #F5C744; border: 1px solid #F5C744; color: #071D3B; font-weight: 600; font-size: 13px; padding: 6px 16px; border-radius: 5px; cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.footer-newsletter-form .btn-subscribe:hover { background: #e0b53d; }
.footer-copyright { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin: 0; }
.footer-copyright a { color: #F5C744; text-decoration: none; }
.footer-copyright a:hover { color: #fff; }
.footer-nav-links { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0; padding: 0; margin: 0 0 15px; }
@media (min-width: 992px) { .footer-nav-links { justify-content: flex-start; margin-bottom: 0; } }
.footer-nav-links li { padding: 0 12px; margin-bottom: 5px; }
.footer-nav-links li a { font-weight: 500; font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.85); text-decoration: none; transition: color 0.3s; }
.footer-nav-links li a:hover { color: #F5C744; }
.footer-social-links { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; padding: 0; margin: 0 0 15px; }
@media (min-width: 992px) { .footer-social-links { justify-content: flex-end; gap: 16px; margin-bottom: 0; } }
.footer-social-links li a { display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.footer-social-links li a img, .footer-social-links li a svg { width: 24px; height: 24px; filter: grayscale(100%) brightness(1000%); transition: filter 0.3s ease; }
.footer-social-links li a:hover img, .footer-social-links li a:hover svg { filter: none; }
.footer-social-links li a .inline-social-icon { filter: none; }
.footer-social-links li a .inline-social-icon path, .footer-social-links li a .inline-social-icon circle { fill: #fff; transition: fill 0.3s ease; }
.footer-social-links li a:hover .inline-social-icon path, .footer-social-links li a:hover .inline-social-icon circle { fill: #F5C744; }
@media (max-width: 991px) {
   .footer-col-center { order: 1; margin-bottom: 24px; }
   .footer-col-left   { order: 2; margin-bottom: 16px; }
   .footer-col-right  { order: 3; }
}
@media (min-width: 992px) {
   .footer-col-left  { display: flex; align-items: center; }
   .footer-col-right { display: flex; align-items: center; justify-content: flex-end; }
}

/* ============================================================
   Homepage — testimonial card + bounce arrow
   ============================================================ */
@keyframes bounceDown {
   0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
   40% { transform: translateY(6px); }
   60% { transform: translateY(3px); }
}
.testimonial-section { padding: 80px 0; }
.testimonial-card {
   background: rgba(255,255,255,0.04);
   border: 1px solid rgba(245,199,68,0.15);
   border-radius: 16px;
   padding: 48px 40px 40px;
   max-width: 720px;
   margin: 0 auto;
   position: relative;
   text-align: center;
}
.testimonial-card .quote-mark { font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: #F5C744; position: absolute; top: -8px; left: 32px; opacity: 0.6; }
.testimonial-card .quote-text { font-size: 1.2rem; font-style: italic; line-height: 1.75; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.testimonial-card .quote-attribution { font-size: 0.95rem; font-weight: 600; color: #F5C744; }
.testimonial-card .quote-role { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
@media (max-width: 767px) {
   .testimonial-card { padding: 40px 24px 32px; }
   .testimonial-card .quote-text { font-size: 1.05rem; }
   .testimonial-card .quote-mark { font-size: 4rem; left: 16px; }
}

/* ============================================================
   Features page — audience toggle, highlight cards, etc.
   ============================================================ */
.ft-audience-toggle { display: flex; justify-content: center; gap: 0; max-width: 600px; margin: 0 auto; }
.ft-audience-toggle .ft-toggle-btn { flex: 1; padding: 22px 28px; border: 2px solid rgba(83, 182, 205, 0.3); background: rgba(83, 182, 205, 0.06); color: rgba(255,255,255,0.8); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.35s ease; text-align: center; line-height: 1.4; position: relative; overflow: hidden; }
.ft-audience-toggle .ft-toggle-btn:first-child { border-radius: 12px 0 0 12px; border-right: none; }
.ft-audience-toggle .ft-toggle-btn:last-child { border-radius: 0 12px 12px 0; border-left: none; }
.ft-audience-toggle .ft-toggle-btn::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: #53B6CD; transition: width 0.35s ease; }
.ft-audience-toggle .ft-toggle-btn:hover { background: rgba(83, 182, 205, 0.12); color: #fff; }
.ft-audience-toggle .ft-toggle-btn.active { background: rgba(83, 182, 205, 0.15); border-color: #53B6CD; color: #fff; }
.ft-audience-toggle .ft-toggle-btn.active::after { width: 60%; }
.ft-toggle-sub { display: block; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.6); margin-top: 4px; }
.ft-toggle-btn.active .ft-toggle-sub { color: rgba(255,255,255,0.75); }

.ft-trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; padding: 18px 0 0; }
.ft-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.3px; text-transform: uppercase; white-space: nowrap; }
.ft-trust-item::before { content: '\2713'; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(83, 182, 205, 0.2); color: #53B6CD; font-size: 11px; flex-shrink: 0; }
@media (max-width: 767px) { .ft-trust-bar { gap: 6px 16px; } .ft-trust-item { font-size: 11px; } }

.ft-section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, #53B6CD, rgba(83,182,205,0.2)); margin: 0 auto 24px; border-radius: 2px; }
.instructor-view { display: none; }
.student-view { display: block; }

.ft-sticky-indicator { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #F5C744; padding: 12px 24px; display: flex; align-items: center; justify-content: center; gap: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; transform: translateY(100%); box-shadow: 0 -4px 24px rgba(0,0,0,0.3); }
.ft-sticky-indicator.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.ft-sticky-indicator .ft-indicator-text { font-size: 15px; font-weight: 700; color: #1a1a2e; letter-spacing: 0.3px; white-space: nowrap; }
.ft-sticky-indicator .ft-indicator-divider { width: 1px; height: 18px; background: rgba(26, 26, 46, 0.25); flex-shrink: 0; }
.ft-sticky-indicator .ft-indicator-switch { font-size: 14px; font-weight: 700; color: #fff; cursor: pointer; text-decoration: none; background: #1a1a2e; padding: 6px 18px; border-radius: 20px; transition: background 0.2s ease, transform 0.15s ease; white-space: nowrap; }
.ft-sticky-indicator .ft-indicator-switch:hover { background: #2a2a4e; transform: scale(1.03); }
.ft-sticky-indicator.instructor-active { background: #53B6CD; }
.ft-sticky-indicator.instructor-active .ft-indicator-text { color: #1a1a2e; }
.ft-sticky-indicator.instructor-active .ft-indicator-divider { background: rgba(255, 255, 255, 0.3); }
.ft-sticky-indicator.instructor-active .ft-indicator-switch { color: #fff; background: #1a1a2e; }
.ft-sticky-indicator.instructor-active .ft-indicator-switch:hover { background: #2a2a4e; }
@media (max-width: 767px) {
   .ft-sticky-indicator { padding: 10px 16px; gap: 12px; }
   .ft-sticky-indicator .ft-indicator-text { font-size: 13px; }
   .ft-sticky-indicator .ft-indicator-switch { font-size: 12px; padding: 5px 14px; }
}

.ft-highlight-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease; }
.ft-highlight-card:hover { transform: translateY(-4px); border-color: rgba(83, 182, 205, 0.4); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.ft-highlight-card .ft-highlight-img { background: linear-gradient(135deg, rgba(83,182,205,0.08), rgba(83,182,205,0.02)); padding: 30px; display: flex; align-items: center; justify-content: center; }
.ft-highlight-card .ft-highlight-img img { max-width: 100%; height: auto; border-radius: 8px; }
.ft-highlight-card .ft-highlight-body { padding: 36px 32px; }
.ft-highlight-label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #53B6CD; margin-bottom: 12px; }
.ft-highlight-label.gold { color: #F5C744; }
.ft-highlight-label img { width: 20px; height: 20px; }

.ft-feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 32px 28px; height: 100%; transition: transform 0.3s ease, border-color 0.3s ease; }
.ft-feature-card:hover { transform: translateY(-4px); border-color: rgba(83, 182, 205, 0.4); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.ft-feature-card .ft-card-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(83,182,205,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 24px; color: #53B6CD; }
.ft-feature-card .ft-card-icon.gold { background: rgba(245,199,68,0.15); color: #F5C744; }
.ft-feature-card h4 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 14px; }

.ft-checklist { list-style: none; padding: 0; margin: 0; }
.ft-checklist li { padding: 8px 0; font-size: 15px; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; padding-left: 24px; line-height: 1.5; }
.ft-checklist li:last-child { border-bottom: none; }
.ft-checklist li::before { content: '\2713'; position: absolute; left: 0; color: #53B6CD; font-weight: 700; font-size: 13px; }
.ft-checklist li.gold::before { color: #F5C744; }

.ft-coming-soon { display: inline-block; background: rgba(245,199,68,0.15); border: 1px solid rgba(245,199,68,0.3); color: #F5C744; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }

.ft-testimonial { position: relative; padding: 36px 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; text-align: center; }
.ft-testimonial::before { content: '\201C'; position: absolute; top: 12px; left: 24px; font-size: 64px; color: rgba(83, 182, 205, 0.2); font-family: Georgia, serif; line-height: 1; }
@media (max-width: 767px) { .ft-testimonial { padding: 28px 24px; } }

.ft-pulse-callout { background: linear-gradient(135deg, rgba(83,182,205,0.12) 0%, rgba(83,182,205,0.04) 100%); border: 2px solid rgba(83,182,205,0.35); border-radius: 16px; padding: 40px; text-align: center; }
.ft-pulse-callout h3 { color: #53B6CD; font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.ft-pulse-callout p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
@media (max-width: 767px) { .ft-pulse-callout { padding: 28px 20px; } }

.ft-why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(83,182,205,0.2); border-radius: 12px; padding: 30px 25px; height: 100%; text-align: center; }

.ft-final-cta { background: linear-gradient(135deg, rgba(83,182,205,0.1) 0%, rgba(245,199,68,0.06) 100%); border: 1px solid rgba(83, 182, 205, 0.2); border-radius: 20px; padding: 50px 40px; text-align: center; }
@media (max-width: 767px) { .ft-final-cta { padding: 36px 20px; } }

@media (min-width: 992px) { .ft-highlight-card .row { align-items: center; } }
@media (max-width: 767px) {
   .ft-highlight-card .ft-highlight-body { padding: 28px 24px; }
   .ft-highlight-card .ft-highlight-img { padding: 20px; }
}

/* ============================================================
   Pricing page — audience toggle + card styles (pricing-final)
   ============================================================ */
.vb-audience-toggle { display: flex; justify-content: center; gap: 0; max-width: 600px; margin: 0 auto; }
.vb-audience-toggle .vb-toggle-btn { flex: 1; padding: 22px 28px; border: 2px solid rgba(83, 182, 205, 0.3); background: rgba(83, 182, 205, 0.06); color: rgba(255,255,255,0.8); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.35s ease; text-align: center; line-height: 1.4; position: relative; overflow: hidden; }
.vb-audience-toggle .vb-toggle-btn:first-child { border-radius: 12px 0 0 12px; border-right: none; }
.vb-audience-toggle .vb-toggle-btn:last-child { border-radius: 0 12px 12px 0; border-left: none; }
.vb-audience-toggle .vb-toggle-btn::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: #53B6CD; transition: width 0.35s ease; }
.vb-audience-toggle .vb-toggle-btn:hover { background: rgba(83, 182, 205, 0.12); color: #fff; }
.vb-audience-toggle .vb-toggle-btn.active { background: rgba(83, 182, 205, 0.15); border-color: #53B6CD; color: #fff; }
.vb-audience-toggle .vb-toggle-btn.active::after { width: 60%; }
.vb-toggle-sub { display: block; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.6); margin-top: 4px; }
.vb-toggle-btn.active .vb-toggle-sub { color: rgba(255,255,255,0.75); }

.vb-trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; padding: 18px 0 0; }
.vb-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.3px; text-transform: uppercase; white-space: nowrap; }
.vb-trust-item::before { content: '\2713'; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(83, 182, 205, 0.2); color: #53B6CD; font-size: 11px; flex-shrink: 0; }
@media (max-width: 767px) { .vb-trust-bar { gap: 6px 16px; } .vb-trust-item { font-size: 11px; } }

.vb-section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, #53B6CD, rgba(83,182,205,0.2)); margin: 0 auto 24px; border-radius: 2px; }

.vb-price-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 36px 28px 32px; text-align: center; height: 100%; position: relative; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.vb-price-card:hover { transform: translateY(-4px); border-color: rgba(83, 182, 205, 0.4); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.vb-price-card.featured { border: 3px solid rgba(245, 199, 68, 0.6); background: linear-gradient(135deg, rgba(245,199,68,0.06) 0%, rgba(83,182,205,0.06) 100%); }
.vb-price-card.featured:hover { border-color: rgba(245, 199, 68, 0.8); }
.vb-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: #F5C744; color: #1a1a2e; padding: 4px 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; border-radius: 0 0 8px 8px; }
.vb-price-amount { font-size: 52px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.vb-price-amount sup { font-size: 24px; vertical-align: super; font-weight: 600; }
.vb-price-period { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.vb-price-savings { font-size: 13px; color: #F5C744; font-weight: 600; margin-bottom: 16px; }
.vb-price-desc { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.vb-feature-list { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.vb-feature-list li { padding: 8px 0; font-size: 14px; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; padding-left: 24px; }
.vb-feature-list li:last-child { border-bottom: none; }
.vb-feature-list li::before { content: '\2713'; position: absolute; left: 0; color: #53B6CD; font-weight: 700; font-size: 13px; }
.vb-feature-list li.highlight::before { color: #F5C744; }

.vb-testimonial { position: relative; padding: 36px 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; text-align: center; }
.vb-testimonial::before { content: '\201C'; position: absolute; top: 12px; left: 24px; font-size: 64px; color: rgba(83, 182, 205, 0.2); font-family: Georgia, serif; line-height: 1; }
@media (max-width: 767px) { .vb-testimonial { padding: 28px 24px; } }

.vb-inst-card { border-radius: 16px; padding: 44px 36px; text-align: center; height: 100%; position: relative; transition: transform 0.3s ease; }
.vb-inst-card:hover { transform: translateY(-4px); }
.vb-inst-card.standard { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); }
.vb-inst-card.free-tier { background: linear-gradient(135deg, #1C3251 0%, #243b5e 100%); border: 3px solid rgba(245, 199, 68, 0.6); overflow: hidden; }
.vb-free-badge { position: absolute; top: 0; right: 0; background: #F5C744; color: #1a1a2e; padding: 6px 24px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-bottom-left-radius: 10px; }
.vb-inst-card .vb-inst-features { list-style: none; padding: 0; text-align: left; margin-bottom: 28px; }
.vb-inst-card .vb-inst-features li { padding: 10px 0; font-size: 15px; color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; padding-left: 28px; }
.vb-inst-card .vb-inst-features li:last-child { border-bottom: none; }
.vb-inst-card .vb-inst-features li::before { content: '\2713'; position: absolute; left: 0; color: #53B6CD; font-weight: 700; }
.vb-inst-card.free-tier .vb-inst-features li::before { color: #F5C744; }
@media (max-width: 767px) { .vb-inst-card { padding: 32px 24px; } }

.vb-bridge { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 20px 28px; text-align: center; }
.vb-final-cta { background: linear-gradient(135deg, rgba(83,182,205,0.1) 0%, rgba(245,199,68,0.06) 100%); border: 1px solid rgba(83, 182, 205, 0.2); border-radius: 20px; padding: 50px 40px; text-align: center; }
@media (max-width: 767px) { .vb-final-cta { padding: 36px 20px; } }

.pa-pulse-callout { background: linear-gradient(135deg, rgba(83,182,205,0.12) 0%, rgba(83,182,205,0.04) 100%); border: 2px solid rgba(83,182,205,0.35); border-radius: 10px; padding: 35px 40px; text-align: center; }
.pa-pulse-callout h3 { color: #53B6CD; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.pa-pulse-callout p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }

.pa-pillar-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 30px 25px; height: 100%; transition: transform 0.3s ease, border-color 0.3s ease; }
.pa-pillar-card:hover { transform: translateY(-5px); border-color: #53B6CD; }
.pa-pillar-card .pa-pillar-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(83,182,205,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 24px; color: #53B6CD; }
.pa-pillar-card h4 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.pa-pillar-card p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 0; line-height: 1.6; }

.pa-pulse-features { list-style: none; padding: 0; margin: 0; }
.pa-pulse-features li { padding: 10px 0; padding-left: 28px; position: relative; font-size: 15px; color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.08); }
.pa-pulse-features li:last-child { border-bottom: none; }
.pa-pulse-features li::before { content: "\2713"; position: absolute; left: 0; color: #53B6CD; font-weight: 700; }

.pa-ce-box { background: rgba(255,255,255,0.04); border: 1px dashed rgba(83,182,205,0.3); border-radius: 10px; padding: 40px 30px; text-align: center; }

.pf-hs-callout { background: linear-gradient(135deg, rgba(245,199,68,0.08) 0%, rgba(245,199,68,0.02) 100%); border: 2px solid rgba(245,199,68,0.3); border-radius: 14px; padding: 32px 36px; text-align: center; }
.pf-hs-callout h3 { color: #F5C744; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.pf-hs-callout p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
@media (max-width: 767px) { .pf-hs-callout { padding: 28px 20px; } }

.pf-sticky-indicator { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #F5C744; padding: 12px 24px; display: flex; align-items: center; justify-content: center; gap: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; transform: translateY(100%); box-shadow: 0 -4px 24px rgba(0,0,0,0.3); }
.pf-sticky-indicator.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.pf-sticky-indicator .pf-indicator-text { font-size: 15px; font-weight: 700; color: #1a1a2e; letter-spacing: 0.3px; white-space: nowrap; }
.pf-sticky-indicator .pf-indicator-divider { width: 1px; height: 18px; background: rgba(26, 26, 46, 0.25); flex-shrink: 0; }
.pf-sticky-indicator .pf-indicator-switch { font-size: 14px; font-weight: 700; color: #fff; cursor: pointer; text-decoration: none; background: #1a1a2e; padding: 6px 18px; border-radius: 20px; transition: background 0.2s ease, transform 0.15s ease; white-space: nowrap; }
.pf-sticky-indicator .pf-indicator-switch:hover { background: #2a2a4e; transform: scale(1.03); }
.pf-sticky-indicator.instructor-active { background: #53B6CD; }
.pf-sticky-indicator.instructor-active .pf-indicator-text { color: #1a1a2e; }
.pf-sticky-indicator.instructor-active .pf-indicator-divider { background: rgba(255, 255, 255, 0.3); }
.pf-sticky-indicator.instructor-active .pf-indicator-switch { color: #fff; background: #1a1a2e; }
.pf-sticky-indicator.instructor-active .pf-indicator-switch:hover { background: #2a2a4e; }
@media (max-width: 767px) {
   .pf-sticky-indicator { padding: 10px 16px; gap: 12px; }
   .pf-sticky-indicator .pf-indicator-text { font-size: 13px; }
   .pf-sticky-indicator .pf-indicator-switch { font-size: 12px; padding: 5px 14px; }
}

/* ============================================================
   About page — team and belief cards, credential badges
   ============================================================ */
.about-team-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(83,182,205,0.2); border-radius: 12px; padding: 30px 25px; height: 100%; }
.about-team-card h4 { color: #53B6CD; margin-bottom: 12px; font-size: 18px; font-weight: 700; }
.about-team-card p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 15px; line-height: 1.6; }

.founder-credential-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.founder-credential-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(83,182,205,0.1); border: 1px solid rgba(83,182,205,0.3); border-radius: 100px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); white-space: nowrap; transition: all 0.3s ease; }
.founder-credential-badge:hover { background: rgba(83,182,205,0.18); border-color: rgba(83,182,205,0.5); }
.founder-credential-badge .badge-icon { color: #F5C744; font-size: 15px; line-height: 1; }

.about-belief-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(83,182,205,0.2); border-radius: 12px; padding: 30px 25px; height: 100%; }
.about-belief-card h4 { color: #53B6CD; margin-bottom: 12px; }
.about-belief-card p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
