  /* WordPress Brain Coding - Complete with Carousels */
  :root {
    --primary: #1d1d1f;
    --primary-dark: #000000;
    --gray-50: #f5f5f7;
    --gray-100: #e8e8ed;
    --gray-200: #d2d2d7;
    --gray-300: #86868b;
    --gray-400: #6e6e73;
    --gray-500: #515154;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --white: #ffffff;
  }

  .bc-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .bc-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.47059;
    color: var(--primary);
    overflow-x: hidden;
    background: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

  /* Hero Section */
  .bc-hero {
    margin-top: 0;
    padding: 80px 22px 60px;
    background: var(--white);
    text-align: center;
    position: relative;
  }

  .bc-hero-content {
    position: relative;
    z-index: 1;
  }

  .bc-hero-content h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.07143;
    color: var(--primary);
    letter-spacing: -0.005em;
    max-width: 980px;
    margin: 0 auto 16px;
  }

  .bc-hero-content h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--gray-400);
    letter-spacing: -0.005em;
    max-width: 980px;
    margin: 0 auto;
  }

  /* Main Services Cards */
  .bc-main-services {
    padding: 60px 22px 110px;
    background: var(--white);
  }

  .bc-services-container {
    max-width: 33.333%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .bc-card-wrapper {
    perspective: 1000px;
    margin: 0;
    transition: min-height 0.6s ease;
  }

  .bc-card {
    position: relative;
    width: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }

  .bc-card-wrapper.flipped .bc-card {
    transform: rotateY(180deg);
  }

  .bc-card-face {
    width: 100%;
    backface-visibility: hidden;
    background: var(--white);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .bc-card-front {
    position: relative;
    text-align: center;
    min-height: 400px;
  }

  .bc-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotateY(180deg);
    text-align: left;
  }

  .bc-card-wrapper:not(.flipped) .bc-card-back {
    visibility: hidden;
    pointer-events: none;
  }

  .bc-card-wrapper:hover .bc-card-face {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .bc-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
  }

  .bc-code-icon {
    padding: 12px;
  }

  .bc-code-icon svg {
    width: 100%;
    height: 100%;
  }

  .bc-card-face h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: -0.005em;
  }

  .bc-card-face p {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.47059;
    margin-bottom: 16px;
    font-weight: 400;
  }

  .bc-card-back h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }

  .bc-card-back p {
    font-size: 15px;
    line-height: 1.6;
  }

  .bc-card-back p strong {
    color: var(--primary);
    font-weight: 600;
  }

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

  .bc-flip-link {
    color: #0071e3;
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
    justify-content: center;
    cursor: pointer;
  }

  .bc-flip-link:hover {
    text-decoration: underline;
  }

  .bc-card-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .bc-card-actions .bc-flip-link {
    position: absolute;
    right: 0;
  }

  .bc-schedule-btn {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .bc-schedule-btn:hover {
    background: var(--gray-500);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Benefits Mini Cards */
  .bc-benefits-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
  }

  .bc-benefit-wrapper {
    perspective: 1000px;
    min-height: 250px;
  }

  .bc-benefit-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }

  .bc-benefit-wrapper.flipped .bc-benefit-card {
    transform: rotateY(180deg);
  }

  .bc-benefit-front,
  .bc-benefit-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #f5f5f7;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .bc-benefit-front {
    z-index: 2;
  }

  .bc-benefit-back {
    transform: rotateY(180deg);
  }

  .bc-benefit-front h3,
  .bc-benefit-back h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--gray-800);
  }

  .bc-benefit-front p,
  .bc-benefit-back p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-600);
    margin-bottom: 16px;
  }

  .bc-mini-flip {
    color: #0071e3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
  }

  .bc-mini-flip:hover {
    color: var(--gray-500);
  }

  /* DIY Sessions Sections */
  .bc-diy-sessions {
    padding: 80px 22px;
  }

  .bc-diy-sessions.bc-gray-bg {
    background: var(--gray-50);
  }

  .bc-diy-sessions.bc-white-bg {
    background: var(--white);
  }

  .bc-diy-sessions-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .bc-section-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .bc-section-header h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
    letter-spacing: -0.005em;
    line-height: 1.1;
  }

  .bc-section-header p {
    font-size: 21px;
    color: var(--gray-400);
    line-height: 1.381;
    font-weight: 400;
  }

  .bc-note {
    background: rgba(0, 113, 227, 0.1);
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    border-left: 4px solid #0071e3;
  }

  .bc-note strong {
    color: #0071e3;
  }

  /* Carousel Wrapper */
  .bc-carousel-wrapper {
    position: relative;
    padding: 0 60px;
  }

  .bc-carousel {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
  }

  .bc-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--gray-200);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
  }

  .bc-carousel-nav:hover {
    background: var(--gray-50);
    border-color: #0071e3;
    transform: translateY(-50%) scale(1.1);
  }

  .bc-carousel-nav.prev {
    left: 0;
  }

  .bc-carousel-nav.next {
    right: 0;
  }

  .bc-carousel-nav svg {
    width: 24px;
    height: 24px;
  }

  .bc-carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .bc-carousel-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: var(--white);
    border-color: var(--gray-200);
  }

  /* Session Cards */
  .bc-session-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    flex: 0 0 280px;
    min-width: 280px;
    padding: 0;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  }

  .bc-diy-sessions.bc-gray-bg .bc-session-card {
    background: var(--white);
  }

  .bc-diy-sessions.bc-white-bg .bc-session-card {
    background: var(--gray-50);
  }

  .bc-session-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 15px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px) rotateX(5deg);
  }

  .bc-session-card .bc-card-image {
    height: 140px;
    width: 100%;
    background-size: cover;
    background-position: center;
  }

  .bc-session-card .bc-card-content {
    padding: 16px 24px;
    text-align: center;
  }

  .bc-session-card .bc-stage {
    font-size: 13px;
    color: #0071e3;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .bc-session-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.005em;
    line-height: 1.3;
    margin: 0;
  }

  .bc-learn-more-btn {
    background: #0071e3;
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px;
  }

  .bc-learn-more-btn:hover {
    background: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
  }

  /* Coming Soon */
  .bc-session-card.bc-coming-soon {
    opacity: 0.6;
  }

  .bc-session-card.bc-coming-soon:hover {
    opacity: 0.8;
  }

  .bc-coming-soon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #0071e3, #00a8ff);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
  }

  /* Iframe Modal */
  .bc-iframe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
  }

  .bc-iframe-modal.active {
    display: flex;
  }

  .bc-iframe-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .bc-iframe-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .bc-iframe-close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
  }

  .bc-iframe-close-btn svg {
    width: 20px;
    height: 20px;
  }

  #bc-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Mobile Responsive */
  @media (max-width: 968px) {
    .bc-hero-content h1 {
      font-size: 48px;
    }

    .bc-hero-content h2 {
      font-size: 21px;
    }

    .bc-services-container {
      max-width: 100%;
      padding: 0 22px;
    }

    .bc-benefits-table {
      grid-template-columns: 1fr;
    }

    .bc-main-services {
      padding: 40px 22px 60px;
    }

    .bc-carousel-wrapper {
      padding: 0 50px;
    }

    .bc-carousel-nav {
      width: 40px;
      height: 40px;
    }

    .bc-carousel-nav svg {
      width: 20px;
      height: 20px;
    }

    .bc-session-card {
      flex: 0 0 240px;
      min-width: 240px;
    }

    .bc-diy-sessions {
      padding: 60px 22px;
    }

    .bc-section-header h2 {
      font-size: 32px;
    }

    .bc-section-header p {
      font-size: 17px;
    }

    .bc-session-card h3 {
      font-size: 17px;
    }
  }

  @media (max-width: 768px) {
    .bc-hero-content h1 {
      font-size: 32px;
    }

    .bc-hero-content h2 {
      font-size: 17px;
    }

    .bc-hero {
      padding: 60px 22px 40px;
    }

    .bc-main-services {
      padding: 25px 22px 45px;
    }

    .bc-card-face {
      min-height: 380px;
      padding: 40px 32px;
    }

    .bc-card-face h2 {
      font-size: 24px;
    }

    .bc-card-back h2 {
      font-size: 22px;
    }

    .bc-card-actions {
      flex-direction: column;
      gap: 12px;
    }

    .bc-card-actions .bc-flip-link {
      position: static;
    }

    .bc-schedule-btn {
      width: 100%;
      text-align: center;
    }

    .bc-carousel-wrapper {
      padding: 0 45px;
    }

    .bc-carousel-nav {
      width: 36px;
      height: 36px;
    }

    .bc-carousel-nav svg {
      width: 18px;
      height: 18px;
    }

    .bc-session-card {
      flex: 0 0 200px;
      min-width: 200px;
    }

    .bc-carousel {
      gap: 16px;
    }

    .bc-diy-sessions {
      padding: 50px 22px;
    }

    .bc-section-header h2 {
      font-size: 28px;
    }

    .bc-session-card h3 {
      font-size: 16px;
    }

    .bc-stage {
      font-size: 12px;
    }

    .bc-coming-soon-badge {
      font-size: 10px;
      padding: 5px 10px;
    }
  }

  @media (max-width: 480px) {
    .bc-carousel-wrapper {
      padding: 0 40px;
    }

    .bc-session-card {
      flex: 0 0 180px;
      min-width: 180px;
    }

    .bc-carousel {
      gap: 12px;
    }
  }

  /* Iframe Modal Mobile Responsive */
  @media (max-width: 768px) {
    .bc-iframe-modal-content {
      width: 95%;
      height: 90vh;
    }

    .bc-iframe-close-btn {
      top: 12px;
      right: 12px;
      width: 36px;
      height: 36px;
    }

    .bc-iframe-close-btn svg {
      width: 18px;
      height: 18px;
    }
  }

  /* ========================================
   HOME PAGE STYLES
   ======================================== */

  /* TV Section */
  .bc-tv-section {
    padding: 60px 22px;
    background: var(--gray-50);
  }

  .bc-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .bc-section-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
    letter-spacing: -0.005em;
  }

  .bc-section-title-centered {
    font-size: 56px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -0.005em;
  }

  .bc-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .bc-video-wrapper iframe,
  .bc-video-wrapper video {
    width: 100%;
    height: auto;
    min-height: 500px;
  }

  /* Help Section */
  .bc-help-section {
    padding: 80px 22px 40px;
    background: var(--white);
  }

  /* Services Overview Grid */
  .bc-services-overview {
    padding: 40px 22px 80px;
    background: var(--white);
  }

  .bc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .bc-service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .bc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #0071e3;
  }

  .bc-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bc-service-icon svg {
    width: 100%;
    height: 100%;
  }

  .bc-service-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: -0.005em;
  }

  .bc-service-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-400);
    margin-bottom: 24px;
  }

  .bc-btn-link {
    display: inline-block;
    color: #0071e3;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.2s ease;
  }

  .bc-btn-link:hover {
    color: #0077ed;
    transform: translateX(4px);
  }

  /* Being Different Section */
  .bc-different-section {
    padding: 80px 22px;
    background: var(--gray-50);
  }

  .bc-different-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    letter-spacing: -0.005em;
  }

  .bc-different-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .bc-different-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.3;
  }

  .bc-different-content h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--gray-400);
    line-height: 1.4;
  }

  .bc-no-list {
    margin: 40px 0;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
  }

  .bc-no-list h4 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .bc-no-list ul {
    list-style: none;
    padding: 0;
  }

  .bc-no-list ul li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--gray-400);
  }

  .bc-no-list ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff3b30;
    font-weight: bold;
    font-size: 20px;
  }

  .bc-final-message {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-top: 60px;
    color: #0071e3;
    line-height: 1.3;
  }

  /* Home Page Responsive */
  @media (max-width: 768px) {
    .bc-section-title,
    .bc-section-title-centered {
      font-size: 36px;
    }

    .bc-different-title {
      font-size: 40px;
    }

    .bc-services-grid {
      grid-template-columns: 1fr;
    }

    .bc-different-content h3 {
      font-size: 24px;
    }

    .bc-different-content h4 {
      font-size: 18px;
    }

    .bc-final-message {
      font-size: 24px;
    }

    .bc-video-wrapper iframe,
    .bc-video-wrapper video {
      min-height: 300px;
    }
  }

  /* ========================================
   ABOUT PAGE STYLES
   ======================================== */

  .bc-about-trevor {
    padding: 80px 22px;
    background: var(--white);
  }

  .bc-about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
  }

  .bc-about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .bc-about-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: -0.005em;
  }

  .bc-about-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-400);
    margin-bottom: 20px;
  }

  .bc-vision-section {
    padding: 80px 22px;
    background: var(--gray-50);
    color: var(--gray-900);
  }

  .bc-mission-section {
    padding: 80px 22px;
    background: var(--white);
  }

  .bc-centered-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .bc-centered-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.005em;
  }

  .bc-vision-section .bc-centered-content h2 {
    color: var(--primary);
  }

  .bc-mission-section .bc-centered-content h2 {
    color: var(--primary);
  }

  .bc-centered-content p {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
  }

  .bc-vision-section .bc-centered-content p {
    color: var(--gray-400);
  }

  .bc-mission-section .bc-centered-content p {
    color: var(--gray-400);
  }

  .bc-values-section {
    padding: 80px 22px;
    background: var(--gray-50);
  }

  .bc-values-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    letter-spacing: -0.005em;
  }

  .bc-values-grid-pairs {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .bc-value-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .bc-value-card-static {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bc-value-card-static:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .bc-value-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
  }

  .bc-value-icon svg {
    width: 100%;
    height: 100%;
  }

  .bc-value-card-static h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: -0.005em;
  }

  .bc-value-card-static p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-400);
    margin: 0;
  }

  /* Values Section Responsive */
  @media (max-width: 968px) {
    .bc-values-title {
      font-size: 40px;
    }

    .bc-value-pair {
      gap: 24px;
    }

    .bc-value-card-static {
      padding: 32px 24px;
    }

    .bc-value-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
    }

    .bc-value-card-static h3 {
      font-size: 24px;
    }

    .bc-value-card-static p {
      font-size: 15px;
    }
  }

  @media (max-width: 768px) {
    .bc-values-section {
      padding: 60px 20px;
    }

    .bc-values-title {
      font-size: 32px;
    }

    .bc-values-grid-pairs {
      gap: 30px;
    }

    .bc-value-pair {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .bc-value-card-static {
      padding: 28px 20px;
    }

    .bc-value-icon {
      width: 70px;
      height: 70px;
      margin-bottom: 16px;
    }

    .bc-value-card-static h3 {
      font-size: 22px;
    }

    .bc-value-card-static p {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .bc-values-section {
      padding: 40px 16px;
    }

    .bc-values-title {
      font-size: 28px;
    }

    .bc-values-grid-pairs {
      gap: 24px;
    }

    .bc-value-card-static {
      padding: 24px 16px;
    }

    .bc-value-icon {
      width: 60px;
      height: 60px;
    }

    .bc-value-card-static h3 {
      font-size: 20px;
    }
  }

  /* About Page Responsive */
  @media (max-width: 768px) {
    .bc-about-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .bc-about-image {
      max-width: 300px;
      margin: 0 auto;
    }

    .bc-about-content h2,
    .bc-centered-content h2 {
      font-size: 32px;
    }

    .bc-centered-content p {
      font-size: 18px;
    }
  }

  /* ========================================
   DEFAULT PAGE STYLES
   ======================================== */

  .bc-page-hero {
    padding: 100px 22px 60px;
  }

  .bc-page-hero h1 {
    font-size: 56px;
  }

  .bc-page-content-section {
    padding: 60px 22px 100px;
    background: var(--white);
  }

  .bc-page-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-400);
  }

  .bc-page-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--primary);
  }

  .bc-page-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 30px 0 16px;
    color: var(--primary);
  }

  .bc-page-content h4 {
    font-size: 22px;
    font-weight: 500;
    margin: 24px 0 12px;
    color: var(--gray-600);
  }

  .bc-page-content p {
    margin-bottom: 20px;
  }

  .bc-page-content ul,
  .bc-page-content ol {
    margin: 20px 0;
    padding-left: 40px;
  }

  .bc-page-content li {
    margin-bottom: 12px;
  }

  .bc-page-content a {
    color: #0071e3;
    text-decoration: none;
  }

  .bc-page-content a:hover {
    text-decoration: underline;
  }

  .bc-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
  }

  .bc-page-content video,
  .bc-page-content iframe {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
  }

  /* Default Page Responsive */
  @media (max-width: 768px) {
    .bc-page-hero h1 {
      font-size: 36px;
    }

    .bc-page-content h2 {
      font-size: 28px;
    }

    .bc-page-content h3 {
      font-size: 22px;
    }
  }

  /* ========================================
   SITE HEADER STYLES
   ======================================== */

  .bc-site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .bc-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .bc-logo a {
    text-decoration: none;
  }

  .bc-site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
  }

  .bc-logo img {
    height: 50px;
    width: auto;
  }

  .bc-nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
  }

  .bc-nav-menu li a {
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 8px 0;
    display: block;
  }

  .bc-nav-menu li a:hover,
  .bc-nav-menu li.current-menu-item a {
    color: #0071e3;
  }

  .bc-account-button {
    display: flex;
    align-items: center;
  }

  .bc-btn-account {
    background: #1d1d1f;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
  }

  .bc-btn-account:hover {
    background: #3a3a3c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .bc-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .bc-mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
  }

  /* Header Responsive */
  @media (max-width: 768px) {
    .bc-main-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      padding: 20px;
    }

    .bc-main-nav.active {
      display: block;
    }

    .bc-nav-menu {
      flex-direction: column;
      gap: 0;
    }

    .bc-nav-menu li a {
      padding: 16px 0;
      border-bottom: 1px solid var(--gray-100);
    }

    .bc-mobile-menu-toggle {
      display: flex;
    }

    .bc-account-button {
      margin-left: auto;
      margin-right: 12px;
    }

    .bc-btn-account {
      padding: 8px 16px;
      font-size: 14px;
    }

    .bc-header-container {
      position: relative;
    }
  }

  /* ========================================
   WOOCOMMERCE STYLES
   ======================================== */

  .bc-woocommerce-page {
    min-height: 60vh;
  }

  .bc-woo-content {
    padding: 60px 22px 100px;
  }

  .bc-woo-content .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* WooCommerce Product Grid */
  .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }

  .woocommerce ul.products li.product {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
  }

  .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .woocommerce ul.products li.product .button {
    background: #0071e3;
    color: var(--white);
    border-radius: 6px;
  }

  .woocommerce ul.products li.product .button:hover {
    background: #0077ed;
  }

  /* ========================================
   BRAIN INTEGRATION PAGE STYLES
   ======================================== */

  .bc-video-section {
    padding: 60px 22px;
    background: var(--gray-50);
  }

  .bc-video-section .bc-video-wrapper video {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
  }

  .bc-what-is-bit {
    padding: 80px 22px;
    background: var(--white);
  }

  .bc-content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1000px;
    margin: 40px auto 0;
    align-items: start;
  }

  .bc-content-text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-400);
    margin-bottom: 20px;
  }

  .bc-content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .bc-who-benefits {
    padding: 80px 22px;
    background: var(--gray-50);
  }

  .bc-intro-text {
    font-size: 19px;
    line-height: 1.5;
    color: var(--gray-400);
    max-width: 900px;
    margin: 20px auto 40px;
    text-align: center;
  }

  .bc-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .bc-benefits-list ul {
    list-style: none;
    padding: 0;
  }

  .bc-benefits-list ul li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--gray-400);
    border-bottom: 1px solid var(--gray-200);
  }

  .bc-benefits-list ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0071e3;
    font-weight: bold;
    font-size: 18px;
  }

  .bc-benefits-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .bc-benefits-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .bc-faq-section {
    padding: 80px 22px;
    background: var(--white);
  }

  .bc-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
  }

  .bc-faq-item {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
  }

  .bc-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #0071e3;
  }

  .bc-faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0071e3;
    line-height: 1.3;
  }

  .bc-faq-item p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-400);
    margin: 0;
  }

  /* Brain Integration Page Responsive */
  @media (max-width: 768px) {
    .bc-content-grid,
    .bc-benefits-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .bc-faq-grid {
      grid-template-columns: 1fr;
    }

    .bc-content-image,
    .bc-benefits-images {
      max-width: 400px;
      margin: 0 auto;
    }
  }

  /* ========================================
   CIRCULAR CAROUSEL STYLES
   ======================================== */

  .bc-coaching-carousel-section {
    padding: 40px 22px 80px;
  }

  .bc-circular-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
  }

  .bc-circular-carousel {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bc-carousel-item {
    position: absolute;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(0) scale(0.7);
    pointer-events: none;
    z-index: 1;
  }

  .bc-carousel-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
    pointer-events: auto;
  }

  .bc-carousel-item.prev {
    opacity: 0.5;
    transform: translateX(-400px) scale(0.8);
    z-index: 5;
    filter: blur(1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .bc-carousel-item.next {
    opacity: 0.5;
    transform: translateX(400px) scale(0.8);
    z-index: 5;
    filter: blur(1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .bc-carousel-item .bc-card-wrapper {
    width: 450px;
    max-width: 450px;
  }

  .bc-carousel-item .bc-card {
    min-height: 400px;
  }

  .bc-carousel-item .bc-card-face h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: -0.005em;
  }

  .bc-carousel-item .bc-card-face p {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.47059;
    margin-bottom: 16px;
  }

  .bc-circular-carousel-wrapper .bc-carousel-nav {
    z-index: 20;
  }

  .bc-button {
    display: inline-block;
    background: #0071e3;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
  }

  .bc-button:hover {
    background: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
  }

  /* Circular Carousel Responsive */
  @media (max-width: 968px) {
    .bc-circular-carousel {
      height: 450px;
    }

    .bc-carousel-item .bc-card-wrapper {
      width: 380px;
      max-width: 380px;
    }

    .bc-carousel-item.prev,
    .bc-carousel-item.next {
      transform: translateX(-350px) scale(0.75);
    }

    .bc-carousel-item.next {
      transform: translateX(350px) scale(0.75);
    }
  }

  @media (max-width: 768px) {
    .bc-circular-carousel-wrapper {
      padding: 0 60px;
    }

    .bc-circular-carousel {
      height: 500px;
    }

    .bc-carousel-item .bc-card-wrapper {
      width: 320px;
      max-width: 320px;
    }

    .bc-carousel-item.prev,
    .bc-carousel-item.next {
      opacity: 0.3;
      transform: translateX(-280px) scale(0.7);
    }

    .bc-carousel-item.next {
      transform: translateX(280px) scale(0.7);
    }

    .bc-carousel-item .bc-card-face h3 {
      font-size: 24px;
    }

    .bc-carousel-item .bc-card-face p {
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .bc-circular-carousel-wrapper {
      padding: 0 50px;
    }

    .bc-carousel-item .bc-card-wrapper {
      width: 280px;
      max-width: 280px;
    }

    .bc-carousel-item.prev,
    .bc-carousel-item.next {
      display: none;
    }
  }

  /* ========================================
   VIDEO CAROUSEL STYLES
   ======================================== */

  .bc-video-carousel {
    height: 550px;
  }

  .bc-video-item .bc-card-wrapper {
    width: 600px;
    max-width: 600px;
  }

  .bc-video-card {
    min-height: 450px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .bc-video-card .bc-card-front {
    min-height: 450px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .bc-video-thumbnail {
    flex: 1;
    background: var(--gray-800);
    position: relative;
    overflow: hidden;
  }

  .bc-video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .bc-video-embed iframe,
  .bc-video-embed video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bc-video-info {
    padding: 24px;
    background: var(--white);
    text-align: center;
  }

  .bc-video-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
  }

  .bc-video-info p {
    font-size: 15px;
    color: var(--gray-400);
    margin: 0;
  }

  .bc-video-item.active .bc-video-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  }

  .bc-video-item.prev .bc-video-card,
  .bc-video-item.next .bc-video-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  /* Video Carousel Responsive */
  @media (max-width: 968px) {
    .bc-video-carousel {
      height: 500px;
    }

    .bc-video-item .bc-card-wrapper {
      width: 500px;
      max-width: 500px;
    }

    .bc-video-card {
      min-height: 400px;
    }

    .bc-video-card .bc-card-front {
      min-height: 400px;
    }
  }

  @media (max-width: 768px) {
    .bc-video-carousel {
      height: 450px;
    }

    .bc-video-item .bc-card-wrapper {
      width: 400px;
      max-width: 400px;
    }

    .bc-video-card {
      min-height: 350px;
    }

    .bc-video-card .bc-card-front {
      min-height: 350px;
    }

    .bc-video-info h3 {
      font-size: 20px;
    }

    .bc-video-info p {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .bc-video-carousel {
      height: 400px;
    }

    .bc-video-item .bc-card-wrapper {
      width: 300px;
      max-width: 300px;
    }

    .bc-video-card {
      min-height: 320px;
    }

    .bc-video-card .bc-card-front {
      min-height: 320px;
    }

    .bc-video-info {
      padding: 16px;
    }

    .bc-video-info h3 {
      font-size: 18px;
    }
  }

/* ========================================
 CONTACT PAGE STYLES
 ======================================== */

.bc-contact-section {
  padding: 80px 22px;
}

.bc-contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.bc-contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.bc-contact-details {
  margin: 40px 0;
}

.bc-contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.bc-contact-icon {
  font-size: 32px;
  min-width: 50px;
}

.bc-contact-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.bc-contact-item p {
  color: var(--gray-400);
  margin: 0;
}

.bc-contact-item a {
  color: var(--primary);
  text-decoration: none;
}

.bc-contact-item a:hover {
  text-decoration: underline;
}

.bc-free-consultation {
  background: var(--gray-50);
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
}

.bc-free-consultation h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.bc-free-consultation p {
  margin-bottom: 20px;
  color: var(--gray-400);
}

.bc-contact-form-container h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.bc-form-intro {
  color: var(--gray-400);
  margin-bottom: 30px;
}

.bc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bc-form-group {
  display: flex;
  flex-direction: column;
}

.bc-form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.bc-form-group input,
.bc-form-group select,
.bc-form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.bc-form-group input:focus,
.bc-form-group select:focus,
.bc-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.bc-form-note {
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
}

.bc-faq-section {
  padding: 80px 22px;
}

.bc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.bc-faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bc-faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.bc-faq-item p {
  color: var(--gray-400);
  margin: 0;
}

/* ========================================
 INTAKE FORMS PAGE STYLES
 ======================================== */

.bc-intake-section {
  padding: 80px 22px;
}

.bc-intake-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.bc-intro-text {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.bc-intro-note {
  background: #fff3cd;
  color: #856404;
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.bc-intake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.bc-intake-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.bc-intake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.bc-intake-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.bc-intake-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}

.bc-intake-card p {
  color: var(--gray-400);
  margin-bottom: 24px;
  min-height: 60px;
}

.bc-intake-info {
  padding: 80px 22px;
}

.bc-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.bc-info-item {
  text-align: center;
}

.bc-info-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.bc-info-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.bc-info-item p {
  font-size: 15px;
  color: var(--gray-400);
  margin: 0;
}

.bc-lms-section {
  padding: 80px 22px;
}

.bc-lms-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.bc-lms-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.bc-lms-content p {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 30px;
}

.bc-lms-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.bc-button-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.bc-button-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* ========================================
 LOGIN PAGE STYLES
 ======================================== */

.bc-login-section {
  padding: 80px 22px;
}

.bc-login-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.bc-login-form-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.bc-login-intro {
  color: var(--gray-400);
  margin-bottom: 30px;
}

.bc-login-form {
  background: var(--gray-50);
  padding: 30px;
  border-radius: 12px;
}

.bc-login-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bc-login-form label {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
  display: block;
}

.bc-login-form input[type="text"],
.bc-login-form input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.bc-login-form input[type="text"]:focus,
.bc-login-form input[type="password"]:focus {
  outline: none;
  border-color: var(--primary);
}

.bc-login-form input[type="submit"] {
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bc-login-form input[type="submit"]:hover {
  background: #005bb5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.bc-login-links {
  text-align: center;
  margin-top: 16px;
}

.bc-login-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.bc-login-links a:hover {
  text-decoration: underline;
}

.bc-login-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.bc-login-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  z-index: 0;
}

.bc-login-divider span {
  background: var(--white);
  padding: 0 20px;
  position: relative;
  z-index: 1;
  color: var(--gray-400);
}

.bc-register-section {
  text-align: center;
}

.bc-register-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.bc-register-section p {
  color: var(--gray-400);
  margin-bottom: 20px;
}

.bc-logged-in-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.bc-logged-in-message h3 {
  margin-bottom: 12px;
}

.bc-login-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.bc-login-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--primary);
}

.bc-login-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bc-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bc-benefit-icon {
  font-size: 32px;
  min-width: 40px;
}

.bc-benefit-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.bc-benefit-item p {
  font-size: 14px;
  color: var(--gray-400);
  margin: 0;
}

.bc-help-section {
  padding: 80px 22px;
}

.bc-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.bc-help-item {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
}

.bc-help-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.bc-help-item p {
  font-size: 15px;
  color: var(--gray-400);
  margin: 0;
}

.bc-contact-support {
  text-align: center;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.bc-contact-support a {
  color: var(--primary);
  text-decoration: none;
}

.bc-contact-support a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .bc-contact-content,
  .bc-login-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bc-intake-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-faq-grid,
  .bc-help-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bc-form-row {
    grid-template-columns: 1fr;
  }

  .bc-intake-grid {
    grid-template-columns: 1fr;
  }

  .bc-info-grid {
    grid-template-columns: 1fr;
  }

  .bc-lms-actions {
    flex-direction: column;
  }

  .bc-login-actions {
    flex-direction: column;
  }
}


/* ========================================
   MOBILE RESPONSIVE FIXES - Added 2025-12-18 02:14:07
   ======================================== */

/* Circular Carousel Mobile Fixes */
@media (max-width: 968px) {
  .bc-circular-carousel-wrapper {
    padding: 0 60px;
  }

  .bc-circular-carousel {
    width: 280px;
    height: 280px;
  }

  .bc-carousel-item {
    width: 200px;
  }

  .bc-card {
    font-size: 14px;
  }

  .bc-card h3 {
    font-size: 18px;
  }

  .bc-card p {
    font-size: 14px;
  }

  .bc-video-card .bc-video-info h3 {
    font-size: 16px;
  }

  .bc-video-card .bc-video-info p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .bc-circular-carousel-wrapper {
    padding: 0 50px;
  }

  .bc-circular-carousel {
    width: 240px;
    height: 240px;
  }

  .bc-carousel-item {
    width: 180px;
  }

  .bc-card {
    font-size: 13px;
  }

  .bc-card h3 {
    font-size: 16px;
  }

  .bc-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .bc-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .bc-card-icon svg {
    width: 32px;
    height: 32px;
  }

  .bc-video-card .bc-video-thumbnail {
    height: 140px;
  }

  .bc-video-card .bc-video-info {
    padding: 12px;
  }

  .bc-video-card .bc-video-info h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .bc-video-card .bc-video-info p {
    font-size: 12px;
  }

  .bc-tv-section,
  .bc-coaching-carousel-section {
    padding: 40px 20px;
  }

  .bc-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  /* Hero Section Mobile */
  .bc-hero {
    min-height: 60vh;
    padding: 40px 20px;
  }

  .bc-hero-content h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  /* Help Section Mobile */
  .bc-help-section {
    padding: 40px 20px !important;
  }

  .bc-help-section .bc-container {
    padding: 30px 20px !important;
  }

  .bc-section-title-centered {
    font-size: 24px !important;
  }

  /* DIY Sessions Mobile */
  .bc-diy-sessions-container {
    padding: 40px 20px;
  }

  .bc-card-face {
    padding: 30px 20px;
  }

  /* Video Embeds Mobile */
  .bc-video-embed iframe,
  .bc-video-embed video {
    height: 180px !important;
  }
}

@media (max-width: 480px) {
  .bc-circular-carousel-wrapper {
    padding: 0 40px;
  }

  .bc-circular-carousel {
    width: 200px;
    height: 200px;
  }

  .bc-carousel-item {
    width: 150px;
  }

  .bc-carousel-nav {
    width: 32px;
    height: 32px;
  }

  .bc-carousel-nav svg {
    width: 16px;
    height: 16px;
  }

  .bc-card h3 {
    font-size: 14px;
  }

  .bc-card p {
    font-size: 12px;
  }

  .bc-video-card .bc-video-thumbnail {
    height: 120px;
  }

  .bc-video-card .bc-video-info h3 {
    font-size: 13px;
  }

  .bc-video-card .bc-video-info p {
    font-size: 11px;
  }

  .bc-section-title {
    font-size: 24px;
  }

  .bc-hero-content h1 {
    font-size: 28px;
  }

  .bc-section-title-centered {
    font-size: 20px !important;
  }

  /* Video Embeds Mobile */
  .bc-video-embed iframe,
  .bc-video-embed video {
    height: 150px !important;
  }
}

/* Viewport Meta Tag Enforcement */
@viewport {
  width: device-width;
  zoom: 1.0;
}

/* Prevent horizontal scroll on mobile */
body {
  overflow-x: hidden;
}

.bc-wrapper {
  overflow-x: hidden;
}

/* Touch-friendly buttons */
@media (hover: none) and (pointer: coarse) {
  .bc-carousel-nav,
  .bc-btn,
  .bc-button,
  .bc-flip-link,
  .bc-schedule-btn {
    min-height: 44px;
    min-width: 44px;
  }
}

/* END MOBILE RESPONSIVE FIXES */

