    :root {
      --bg-primary: #0a0a0f;
      --bg-secondary: #111118;
      --bg-card: #16161f;
      --bg-card-hover: #1c1c28;
      --text-primary: #ffffff;
      --text-secondary: #a0a0b0;
      --text-muted: #6b6b7b;
      --accent-primary: #8b5cf6;
      --accent-secondary: #a78bfa;
      --accent-tertiary: #c4b5fd;
      --accent-glow: rgba(139, 92, 246, 0.3);
      --border-color: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 255, 255, 0.15);
      --success: #10b981;
      --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #8b5cf6 100%);
      --gradient-mesh: radial-gradient(ellipse at 20% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                       radial-gradient(ellipse at 80% 100%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .serif {
      font-family: 'Instrument Serif', Georgia, serif;
      font-style: italic;
    }

    /* ESSER Banner */
    .esser-banner {
      position: fixed;
      top: 73px;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(16, 185, 129, 0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(16, 185, 129, 0.15);
      padding: 0.6rem 2rem;
      text-align: center;
      font-size: 0.9rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .esser-banner span {
      color: #10b981;
    }

    .esser-banner a {
      color: #10b981;
      font-weight: 600;
      text-decoration: none;
      background: rgba(16, 185, 129, 0.15);
      padding: 0.35rem 0.85rem;
      border-radius: 100px;
      transition: background 0.2s;
    }

    .esser-banner a:hover {
      background: rgba(16, 185, 129, 0.25);
    }

    .banner-dismiss {
      background: none;
      border: none;
      color: #10b981;
      font-size: 1.25rem;
      cursor: pointer;
      padding: 0 0.5rem;
      margin-left: 0.5rem;
      opacity: 0.7;
      transition: opacity 0.2s;
      line-height: 1;
    }

    .banner-dismiss:hover {
      opacity: 1;
    }

    .esser-banner.hidden {
      display: none;
    }

    /* Adjust nav when banner is hidden */
    body.banner-hidden .hero,
    body.banner-hidden .service-hero,
    body.banner-hidden .about-hero,
    body.banner-hidden .contact-hero {
      padding-top: 120px;
    }

    @media (max-width: 768px) {
      .esser-banner {
        top: 56px;
        padding: 0.5rem 2.5rem 0.5rem 1rem;
        font-size: 0.8rem;
        gap: 0.5rem;
      }

      .esser-banner span {
        flex: 1;
      }

      .banner-dismiss {
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
      }
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 2rem;
      background: rgba(10, 10, 15, 0.8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      background: var(--gradient-purple);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-img {
      height: 24px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-link {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
      position: relative;
    }

    .nav-link:hover {
      color: var(--text-primary);
    }

    /* Hide mobile-only elements on desktop */
    .mobile-close-btn,
    .mobile-nav-section {
      display: none;
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      cursor: pointer;
    }

    .nav-dropdown-toggle svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s;
    }

    .nav-dropdown:hover .nav-dropdown-toggle svg {
      transform: rotate(180deg);
    }

    .nav-mega-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 1.25rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.25s ease;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
      z-index: 1000;
    }

    .nav-dropdown:hover .nav-mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .mega-menu-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      min-width: 700px;
    }

    .mega-menu-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      border-radius: 16px;
      overflow: hidden;
      background: var(--bg-secondary);
      border: 1px solid transparent;
      transition: all 0.2s;
    }

    .mega-menu-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-4px);
    }

    .mega-card-visual {
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .mega-card-icon {
      width: 56px;
      height: 56px;
      background: var(--bg-card);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .mega-menu-card h4 {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-primary);
      padding: 1rem 1rem 0.25rem;
      margin: 0;
    }

    .mega-menu-card p {
      font-size: 0.8rem;
      color: var(--text-muted);
      padding: 0 1rem 1rem;
      margin: 0;
      line-height: 1.4;
    }

    .nav-cta {
      background: var(--gradient-purple);
      color: white;
      padding: 0.65rem 1.25rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 15px var(--accent-glow);
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px var(--accent-glow);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 10rem 2rem 4rem;
      position: relative;
      background: var(--gradient-mesh);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 0.5rem 1rem;
      border-radius: 100px;
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      animation: fadeInUp 0.6s ease-out;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--success);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

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

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: clamp(3rem, 8vw, 5.5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.6s ease-out 0.1s both;
    }

    .hero h1 .serif {
      color: var(--accent-secondary);
    }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      animation: fadeInUp 0.6s ease-out 0.2s both;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeInUp 0.6s ease-out 0.3s both;
    }

    .btn-primary {
      background: var(--gradient-purple);
      color: white;
      padding: 1rem 2rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 20px var(--accent-glow);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px var(--accent-glow);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text-primary);
      padding: 1rem 2rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: 1px solid var(--border-color);
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-secondary:hover {
      border-color: var(--border-hover);
      background: var(--bg-card);
    }


    /* Hero Ops Dashboard */
    .hero-visual {
      margin-top: 3rem;
      width: 100%;
      max-width: 800px;
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .ops-dashboard {
      background: linear-gradient(180deg, #0d0d12 0%, #0a0a0f 100%);
      border-radius: 16px;
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 25px 60px -10px rgba(0,0,0,0.5),
        0 0 120px -30px rgba(139, 92, 246, 0.2);
    }

    .ops-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border-color);
    }

    .ops-live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10b981;
      animation: livePulse 2s ease-in-out infinite;
    }

    @keyframes livePulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
      50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
    }

    .ops-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .ops-grid {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .ops-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.25rem;
      background: rgba(255,255,255,0.02);
      border-radius: 10px;
      border: 1px solid transparent;
      transition: all 0.2s ease;
    }

    .ops-card.active {
      background: rgba(245, 158, 11, 0.05);
      border-color: rgba(245, 158, 11, 0.2);
    }

    .ops-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .ops-card-content {
      flex: 1;
      min-width: 0;
    }

    .ops-card-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    .ops-card-detail {
      font-size: 0.8rem;
      color: var(--text-muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ops-card-status {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.35rem 0.75rem;
      border-radius: 20px;
      flex-shrink: 0;
    }

    .ops-card-status.done {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
    }

    .ops-card-status.progress {
      background: rgba(245, 158, 11, 0.15);
      color: #f59e0b;
    }

    .ops-footer {
      display: flex;
      justify-content: center;
      gap: 3rem;
      padding: 1.25rem 1.5rem;
      border-top: 1px solid var(--border-color);
      background: rgba(0,0,0,0.2);
    }

    .ops-stat {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }

    .ops-stat-value {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .ops-stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    @media (max-width: 768px) {
      .hero-visual {
        margin-top: 2rem;
      }

      .ops-card {
        padding: 0.875rem 1rem;
      }

      .ops-card-icon {
        width: 36px;
        height: 36px;
      }

      .ops-card-title {
        font-size: 0.875rem;
      }

      .ops-card-detail {
        font-size: 0.75rem;
      }

      .ops-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
      }

      .ops-stat {
        flex-direction: column;
        align-items: center;
        gap: 0.125rem;
      }
    }

    /* Logos Section */
    .logos {
      padding: 4rem 2rem;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

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

    .logos-label {
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 2rem;
    }

    .logos-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
      opacity: 0.5;
    }

    .logo-item {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-secondary);
    }

    /* Services Tabbed Section */
    .services-tabbed {
      background: var(--bg-primary);
      padding: 6rem 2rem;
    }

    .services-tabbed-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3rem;
    }

    .services-tabbed-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
      line-height: 1.15;
    }

    .services-tabbed-title .serif {
      color: var(--accent-secondary);
    }

    .services-tabbed-subtitle {
      font-size: 1.15rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .services-tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      background: var(--bg-card);
      padding: 0.5rem;
      border-radius: 100px;
      max-width: 800px;
      margin: 0 auto 4rem;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
    }

    .service-tab {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.5rem;
      border: none;
      background: transparent;
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
      white-space: nowrap;
    }

    .service-tab:hover {
      color: var(--text-primary);
    }

    .service-tab.active {
      background: rgba(139, 92, 246, 0.15);
      color: var(--accent-secondary);
      border: 1px solid rgba(139, 92, 246, 0.3);
    }

    .service-tab svg {
      opacity: 0.7;
    }

    .service-tab.active svg {
      opacity: 1;
      stroke: var(--accent-secondary);
    }

    .services-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-panel {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      animation: fadeIn 0.4s ease;
    }

    .service-panel.active {
      display: grid;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Service Panel Visuals */
    .service-panel-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    /* ============================================
       STAFFING - Schedule Board Visual
       ============================================ */
    .visual-staffing {
      width: 100%;
      max-width: 420px;
    }

    .schedule-board {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .schedule-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.25rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border-color);
    }

    .schedule-title {
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-primary);
    }

    .schedule-badge {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.35rem 0.75rem;
      border-radius: 100px;
    }

    .schedule-badge.filled {
      background: rgba(16, 185, 129, 0.15);
      color: var(--success);
    }

    .schedule-grid {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .schedule-slot {
      display: grid;
      grid-template-columns: 70px 1fr 30px;
      align-items: center;
      gap: 1rem;
      padding: 0.75rem;
      background: var(--bg-secondary);
      border-radius: 10px;
      transition: all 0.2s;
    }

    .schedule-slot:hover {
      background: var(--bg-card-hover);
    }

    .slot-time {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-secondary);
    }

    .slot-teacher {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .teacher-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.7rem;
      font-weight: 600;
    }

    .teacher-avatar.pulsing {
      background: var(--bg-card-hover);
      color: var(--text-muted);
      animation: pulse 1.5s infinite;
    }

    .slot-teacher span {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-primary);
    }

    .slot-status {
      color: var(--success);
      font-weight: 700;
      font-size: 1rem;
    }

    .slot-spinner {
      width: 18px;
      height: 18px;
      border: 2px solid var(--border-color);
      border-top-color: var(--accent-primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .schedule-slot.filling {
      border: 1px dashed var(--border-hover);
      background: transparent;
    }

    .schedule-footer {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border-color);
      text-align: center;
    }

    .footer-stat {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .footer-stat strong {
      color: var(--accent-secondary);
    }

    /* ============================================
       ATTENDANCE - Phone/Chat Visual
       ============================================ */
    .visual-attendance {
      width: 100%;
      max-width: 340px;
    }

    .phone-mockup {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 36px;
      padding: 0.75rem;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    }

    .phone-notch {
      width: 100px;
      height: 24px;
      background: var(--bg-primary);
      border-radius: 20px;
      margin: 0 auto 1rem;
    }

    .phone-screen {
      background: var(--bg-secondary);
      border-radius: 24px;
      padding: 1rem;
      min-height: 380px;
      display: flex;
      flex-direction: column;
    }

    .conversation-header {
      text-align: center;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 1rem;
    }

    .conv-name {
      display: block;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-primary);
    }

    .conv-status {
      font-size: 0.75rem;
      color: var(--success);
    }

    .conversation-messages {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .conv-message {
      max-width: 85%;
      padding: 0.75rem 1rem;
      border-radius: 18px;
      font-size: 0.85rem;
      line-height: 1.45;
    }

    .conv-message p {
      margin: 0;
    }

    .conv-message.outgoing {
      background: #007AFF;
      color: white;
      align-self: flex-end;
      border-bottom-right-radius: 6px;
    }

    .conv-message.incoming {
      background: var(--bg-card);
      color: var(--text-primary);
      align-self: flex-start;
      border-bottom-left-radius: 6px;
    }

    .msg-time {
      display: block;
      font-size: 0.65rem;
      opacity: 0.7;
      margin-top: 0.35rem;
    }

    .recovery-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: rgba(16, 185, 129, 0.15);
      color: var(--success);
      padding: 0.6rem 1rem;
      border-radius: 12px;
      margin-top: 1rem;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .recovery-icon {
      font-size: 1rem;
    }

    /* ============================================
       EXTENDED LEARNING - Program Cards Visual
       ============================================ */
    .visual-extended {
      width: 100%;
      max-width: 380px;
    }

    .programs-showcase {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .program-card.featured {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .program-card-banner {
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .program-emoji {
      font-size: 2.5rem;
    }

    .program-card-content {
      padding: 1.25rem;
    }

    .program-card-content h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    .program-card-content p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 0.75rem;
    }

    .program-meta {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .meta-item {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .program-status-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(16, 185, 129, 0.1);
      padding: 0.6rem 1rem;
      border-radius: 10px;
    }

    .status-text {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--success);
    }

    .status-check {
      color: var(--success);
      font-weight: 700;
    }

    .program-card-mini {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 0.875rem 1rem;
      transition: all 0.2s;
    }

    .program-card-mini:hover {
      border-color: var(--border-hover);
      transform: translateX(4px);
    }

    .mini-emoji {
      font-size: 1.5rem;
    }

    .mini-info {
      flex: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mini-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-primary);
    }

    .mini-status {
      font-size: 0.8rem;
      color: var(--success);
      font-weight: 500;
    }

    /* ============================================
       RECRUITING - Pipeline Funnel Visual
       ============================================ */
    .visual-recruiting {
      width: 100%;
      max-width: 420px;
    }

    .pipeline-visual {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .pipeline-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.25rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border-color);
    }

    .pipeline-title {
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-primary);
    }

    .pipeline-count {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--accent-secondary);
      background: rgba(139, 92, 246, 0.15);
      padding: 0.3rem 0.75rem;
      border-radius: 100px;
    }

    .pipeline-funnel {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1.25rem;
    }

    .funnel-stage {
      display: flex;
      justify-content: center;
    }

    .stage-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 1rem;
      border-radius: 8px;
      transition: all 0.3s;
    }

    .stage-bar:hover {
      transform: scaleX(1.02);
    }

    .stage-label {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-primary);
    }

    .stage-num {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .top-candidates {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border-color);
    }

    .top-candidate {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem;
      background: var(--bg-secondary);
      border-radius: 10px;
      transition: all 0.2s;
    }

    .top-candidate:hover {
      background: var(--bg-card-hover);
    }

    .tc-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .tc-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .tc-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-primary);
    }

    .tc-role {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .tc-badge {
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--accent-secondary);
      background: rgba(139, 92, 246, 0.15);
      padding: 0.25rem 0.6rem;
      border-radius: 100px;
    }

    /* Solution Panel */
    .service-panel-solution {
      padding: 2rem 0;
    }

    .service-panel-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 1rem;
    }

    .service-panel-label svg {
      stroke: var(--text-secondary);
    }

    .service-panel-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1.25rem;
      line-height: 1.2;
    }

    .service-panel-text {
      font-size: 1.1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .solution-features {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .solution-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1rem;
      color: var(--text-primary);
    }

    .feature-check {
      width: 24px;
      height: 24px;
      background: rgba(16, 185, 129, 0.15);
      color: var(--success);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .service-panel-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--gradient-purple);
      color: white;
      padding: 0.875rem 1.5rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 15px var(--accent-glow);
    }

    .btn-dark:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px var(--accent-glow);
    }

    .btn-outline-dark {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--text-primary);
      padding: 0.875rem 1.5rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      border: 1px solid var(--border-color);
      transition: all 0.2s;
    }

    .btn-outline-dark:hover {
      border-color: var(--border-hover);
      background: var(--bg-card);
    }

    @media (max-width: 900px) {
      .services-tabs {
        flex-wrap: wrap;
        border-radius: 20px;
        max-width: 100%;
      }

      .service-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
      }

      .service-panel {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .service-panel-visual {
        order: -1;
        min-height: auto;
      }

      .visual-staffing,
      .visual-attendance,
      .visual-extended,
      .visual-recruiting {
        max-width: 100%;
      }
    }

    /* Section Styles */
    section {
      padding: 6rem 2rem;
    }

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

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .section-tag {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-secondary);
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .section-title .serif {
      color: var(--accent-secondary);
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
    }

    /* Belief Section */
    .belief {
      background: var(--gradient-mesh);
      position: relative;
    }

    .belief-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .belief-icon {
      width: 64px;
      height: 64px;
      background: var(--gradient-purple);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
      font-size: 2rem;
    }

    .belief-title {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .belief-text {
      font-size: 1.15rem;
      color: var(--text-secondary);
      line-height: 1.8;
    }

    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-purple);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .service-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 56px;
      height: 56px;
      background: rgba(139, 92, 246, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }

    .service-title {
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .service-description {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .service-link {
      color: var(--accent-secondary);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: gap 0.2s;
    }

    .service-link:hover {
      gap: 0.6rem;
    }

    /* Concierge Section */
    .concierge {
      background: var(--bg-secondary);
    }

    .concierge-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .concierge-content h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .concierge-content h2 .serif {
      color: var(--accent-secondary);
    }

    .concierge-text {
      color: var(--text-secondary);
      font-size: 1.1rem;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .concierge-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .concierge-feature {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 1rem;
    }

    .concierge-feature-icon {
      width: 24px;
      height: 24px;
      background: rgba(16, 185, 129, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--success);
      font-size: 0.75rem;
    }

    .concierge-visual {
      position: relative;
    }

    .chat-mockup {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    }

    .chat-header {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .chat-avatar {
      width: 44px;
      height: 44px;
      background: var(--gradient-purple);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }

    .chat-info h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    .chat-info span {
      font-size: 0.8rem;
      color: var(--success);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .chat-info span::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--success);
      border-radius: 50%;
    }

    .chat-messages {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .chat-message {
      max-width: 80%;
      padding: 0.875rem 1.25rem;
      border-radius: 16px;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .chat-message.sent {
      background: var(--gradient-purple);
      color: white;
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }

    .chat-message.received {
      background: var(--bg-secondary);
      color: var(--text-primary);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }

    .chat-time {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-align: center;
      margin: 0.5rem 0;
    }

    /* Chat Animation */
    .chat-messages .chat-time,
    .chat-messages .chat-message {
      opacity: 0;
      transform: translateY(10px);
      animation: chatFadeIn 0.4s ease forwards;
    }

    .chat-messages > *:nth-child(1) { animation-delay: 0.5s; }
    .chat-messages > *:nth-child(2) { animation-delay: 1.2s; }
    .chat-messages > *:nth-child(3) { animation-delay: 2.5s; }
    .chat-messages > *:nth-child(4) { animation-delay: 3.5s; }
    .chat-messages > *:nth-child(5) { animation-delay: 4.2s; }
    .chat-messages > *:nth-child(6) { animation-delay: 5.5s; }

    @keyframes chatFadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Savings Section */
    .savings {
      background: var(--bg-primary);
    }

    .savings-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .savings-content h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .savings-content h2 .serif {
      color: var(--accent-secondary);
    }

    .savings-text {
      color: var(--text-secondary);
      font-size: 1.1rem;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .savings-dashboard {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    }

    .savings-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border-color);
    }

    .savings-title {
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-primary);
    }

    .savings-period {
      font-size: 0.8rem;
      color: var(--text-muted);
      background: var(--bg-secondary);
      padding: 0.3rem 0.75rem;
      border-radius: 100px;
    }

    .savings-total {
      text-align: center;
      padding: 1.5rem 0;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
      border-radius: 16px;
    }

    .savings-label {
      display: block;
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 0.5rem;
    }

    .savings-amount {
      display: block;
      font-size: 3rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--success) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .savings-comparison {
      display: block;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.35rem;
    }

    .savings-breakdown {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .savings-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem;
      background: var(--bg-secondary);
      border-radius: 10px;
      transition: all 0.2s;
    }

    .savings-row:hover {
      background: var(--bg-card-hover);
    }

    .savings-row-info {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .savings-row-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .savings-row-label {
      font-size: 0.9rem;
      color: var(--text-primary);
      font-weight: 500;
    }

    .savings-row-value {
      font-size: 1rem;
      font-weight: 700;
      color: var(--success);
    }

    .savings-row-value.hours {
      color: #f59e0b;
    }

    .savings-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid var(--border-color);
    }

    .savings-roi {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .roi-label {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .roi-value {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--accent-secondary);
    }

    .savings-trend {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.85rem;
      color: var(--success);
    }

    .trend-arrow {
      font-weight: 700;
    }

    @media (max-width: 1024px) {
      .savings-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .savings-visual {
        order: -1;
      }
    }

    /* Results Section */
    .results-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .result-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
      transition: all 0.3s;
    }

    .result-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-hover);
    }

    .result-icon {
      width: 80px;
      height: 80px;
      background: rgba(139, 92, 246, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
    }

    .result-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .result-description {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* Testimonials Section */
    .testimonials {
      background: var(--gradient-mesh);
    }

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

    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 2rem;
    }

    .testimonial-stars {
      color: #fbbf24;
      font-size: 1rem;
      margin-bottom: 1rem;
      letter-spacing: 2px;
    }

    .testimonial-text {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .testimonial-avatar {
      width: 48px;
      height: 48px;
      background: var(--gradient-purple);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .testimonial-avatar-img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(245, 158, 11, 0.3);
    }

    .testimonial-info h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    .testimonial-info span {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* Video Section */
    .video-section {
      background: var(--bg-secondary);
    }

    .video-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .video-wrapper {
      position: relative;
      aspect-ratio: 16/9;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
    }

    .video-wrapper:hover {
      border-color: var(--border-hover);
      transform: scale(1.01);
    }

    .video-play-btn {
      width: 80px;
      height: 80px;
      background: var(--gradient-purple);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
      box-shadow: 0 10px 40px var(--accent-glow);
      transition: all 0.3s;
    }

    .video-wrapper:hover .video-play-btn {
      transform: scale(1.1);
    }

    .video-label {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-size: 0.9rem;
    }

    /* Case Studies Section */
    .case-studies-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .case-study-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
    }

    .case-study-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-hover);
    }

    .case-study-image {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .case-study-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .case-study-card:hover .case-study-image img {
      transform: scale(1.05);
    }

    .case-study-content {
      padding: 1.5rem;
    }

    .case-study-tag {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .case-study-tag.tag-purple {
      background: rgba(139, 92, 246, 0.15);
      color: #a78bfa;
    }

    .case-study-tag.tag-green {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
    }

    .case-study-tag.tag-pink {
      background: rgba(236, 72, 153, 0.15);
      color: #ec4899;
    }

    .case-study-tag.tag-amber {
      background: rgba(245, 158, 11, 0.15);
      color: #f59e0b;
    }

    .case-study-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .case-study-excerpt {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .case-study-stat {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }

    .case-study-stat-value {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--accent-secondary);
    }

    /* Match stat value colors to tag colors */
    .case-study-tag.tag-purple + .case-study-title + .case-study-excerpt + .case-study-stat .case-study-stat-value,
    .case-study-content:has(.tag-purple) .case-study-stat-value {
      color: #a78bfa;
    }

    .case-study-content:has(.tag-green) .case-study-stat-value {
      color: #10b981;
    }

    .case-study-content:has(.tag-pink) .case-study-stat-value {
      color: #ec4899;
    }

    .case-study-content:has(.tag-amber) .case-study-stat-value {
      color: #f59e0b;
    }

    .case-study-stat-label {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* FAQ Section */
    .faq {
      background: var(--bg-secondary);
    }

    .faq-grid {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border-color);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 1.5rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      text-align: left;
      color: var(--text-primary);
      font-size: 1.1rem;
      font-weight: 500;
      font-family: inherit;
    }

    .faq-question:hover {
      color: var(--accent-secondary);
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
    }

    .faq-answer p {
      padding-bottom: 1.5rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* Stats Section */
    .stats {
      padding: 4rem 2rem;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .stat-item-value {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      background: var(--gradient-purple);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-item-label {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    /* CTA Section */
    .cta {
      background: var(--gradient-mesh);
      text-align: center;
    }

    .cta-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .cta h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .cta h2 .serif {
      color: var(--accent-secondary);
    }

    .cta p {
      color: var(--text-secondary);
      font-size: 1.15rem;
      margin-bottom: 2rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Footer */
    footer {
      background: var(--bg-secondary);
      padding: 4rem 2rem 2rem;
      border-top: 1px solid var(--border-color);
    }

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

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      margin: 1rem 0;
      max-width: 300px;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      text-decoration: none;
      transition: all 0.2s;
    }

    .footer-social a:hover {
      border-color: var(--border-hover);
      color: var(--text-primary);
    }

    .footer-column h4 {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .footer-column a {
      display: block;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      padding: 0.4rem 0;
      transition: color 0.2s;
    }

    .footer-column a:hover {
      color: var(--accent-secondary);
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid var(--border-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    .footer-legal {
      display: flex;
      gap: 2rem;
    }

    .footer-legal a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }

    .footer-legal a:hover {
      color: var(--text-secondary);
    }

    .boogiebyte-credit {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s;
    }

    .boogiebyte-credit:hover {
      color: var(--text-secondary);
    }

    .boogiebyte-img {
      width: 24px;
      height: 24px;
      border-radius: 4px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .concierge-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .results-grid,
      .case-studies-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 1002;
      position: relative;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      transform-origin: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    @media (max-width: 900px) {
      nav {
        padding: 0.875rem 1.25rem;
      }

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

      /* Full-screen off-canvas mobile menu */
      .nav-links {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: var(--bg-primary) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        z-index: 9999 !important;
        padding: 5rem 1.5rem 2rem !important;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box !important;
      }

      .nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
      }

      /* Mobile close button */
      .mobile-close-btn {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1.25rem;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        cursor: pointer;
        z-index: 10000;
        flex-shrink: 0;
      }

      .mobile-close-btn svg {
        width: 24px;
        height: 24px;
        stroke: var(--text-primary);
        stroke-width: 2;
      }

      .mobile-close-btn:hover {
        background: var(--bg-card-hover);
        border-color: var(--border-hover);
      }

      /* Mobile nav section headers */
      .mobile-nav-section {
        border-bottom: 1px solid var(--border-color);
      }

      .mobile-nav-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
      }

      .mobile-nav-section-header h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
      }

      .mobile-nav-section-header svg {
        width: 20px;
        height: 20px;
        stroke: var(--text-secondary);
        transition: transform 0.3s ease;
      }

      .mobile-nav-section.active .mobile-nav-section-header svg {
        transform: rotate(180deg);
      }

      .mobile-nav-section-content {
        display: none;
        padding-bottom: 1rem;
      }

      .mobile-nav-section.active .mobile-nav-section-content {
        display: block;
        animation: slideDown 0.3s ease;
      }

      /* Mobile service cards */
      .mobile-service-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.875rem;
        margin-bottom: 0.5rem;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.2s ease;
      }

      .mobile-service-link:hover {
        background: var(--bg-card-hover);
        border-color: var(--border-hover);
      }

      .mobile-service-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .mobile-service-icon svg {
        width: 24px;
        height: 24px;
      }

      .mobile-service-text h4 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.125rem;
      }

      .mobile-service-text p {
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.3;
      }

      /* Regular mobile nav links */
      .nav-links .nav-link {
        font-size: 1.25rem;
        font-weight: 600;
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--border-color);
        display: block;
        color: var(--text-primary);
      }

      .nav-links .nav-link:hover {
        color: var(--accent-primary);
      }

      /* Mobile CTA button */
      .nav-links .nav-cta {
        margin-top: 1.5rem;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
      }

      .nav-cta-arrow {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0.5rem;
      }

      .nav-cta-arrow svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
      }

      /* Hide desktop dropdown elements on mobile */
      .nav-dropdown {
        display: none;
      }

      /* Show mobile-only elements */
      .mobile-close-btn,
      .mobile-nav-section {
        display: flex;
      }

      .mobile-nav-section {
        flex-direction: column;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .mega-menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
      }

      .mega-menu-card {
        padding: 1rem;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 12px;
      }

      .mega-menu-card h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
      }

      .mega-menu-card p {
        font-size: 0.75rem;
        display: none;
      }

      .mega-card-visual {
        display: none;
      }

      /* Mobile nav social/contact footer */
      .nav-links::after {
        content: '';
        display: block;
        flex-grow: 1;
        min-height: 2rem;
      }

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

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

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }
    }

    @media (max-width: 600px) {
      .mega-menu-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
  
    /* About Page - Story Section */
    .story {
      background: var(--bg-secondary);
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .story-content {
      max-width: 540px;
    }

    .story-content h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .story-content h2 .serif {
      color: var(--accent-secondary);
    }

    .story-content p {
      color: var(--text-secondary);
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .story-visual {
      position: relative;
    }

    .story-image {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .story-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    }

    .story-emoji {
      font-size: 6rem;
      position: relative;
      z-index: 1;
      margin-bottom: 1rem;
    }

    .story-image-text {
      position: relative;
      z-index: 1;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    /* About Hero */
    .about-hero {
      min-height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 10rem 2rem 6rem;
      position: relative;
      background: var(--gradient-mesh);
    }

    .about-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
    }

    .about-hero-tag {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-secondary);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .about-hero h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      max-width: 800px;
      position: relative;
      z-index: 1;
    }

    .about-hero h1 .serif {
      color: var(--accent-secondary);
    }

    /* Belief Section */
    .belief {
      background: var(--bg-primary);
      position: relative;
    }

    .belief-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .belief-quote {
      font-size: clamp(1.5rem, 3.5vw, 2.25rem);
      font-weight: 500;
      line-height: 1.5;
      margin-bottom: 2rem;
      color: var(--text-primary);
    }

    .belief-quote .highlight {
      color: var(--accent-secondary);
      font-weight: 700;
    }

    .belief-attribution {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 0.5rem;
    }

    .belief-subtext {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-style: italic;
    }

    /* Values Section */
    .values {
      background: var(--bg-secondary);
    }

    .values-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
    }

    .values-header h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .values-header h2 .serif {
      color: var(--accent-secondary);
    }

    .values-header p {
      color: var(--text-secondary);
      font-size: 1.1rem;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .value-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s;
    }

    .value-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-hover);
    }

    .value-icon {
      font-size: 2.5rem;
      margin-bottom: 1.25rem;
    }

    .value-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--text-primary);
    }

    .value-description {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Approach Section */
    .approach {
      background: var(--bg-primary);
    }

    .approach-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .approach-content h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .approach-content h2 .serif {
      color: var(--accent-secondary);
    }

    .approach-content > p {
      color: var(--text-secondary);
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .approach-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .approach-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .approach-item-icon {
      width: 28px;
      height: 28px;
      background: rgba(16, 185, 129, 0.15);
      color: var(--success);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .approach-item-text {
      font-size: 1rem;
      color: var(--text-primary);
    }

    .approach-item-text strong {
      display: block;
      margin-bottom: 0.25rem;
    }

    .approach-item-text span {
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    .approach-visual {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .approach-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      transition: all 0.3s;
    }

    .approach-card:hover {
      border-color: var(--border-hover);
      transform: translateX(8px);
    }

    .approach-card-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .approach-card-content h4 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    .approach-card-content p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* Impact Section */
    .impact {
      background: var(--gradient-mesh);
      text-align: center;
    }

    .impact-header {
      max-width: 600px;
      margin: 0 auto 4rem;
    }

    .impact-header h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .impact-header h2 .serif {
      color: var(--accent-secondary);
    }

    .impact-header p {
      color: var(--text-secondary);
      font-size: 1.1rem;
    }

    .impact-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .impact-stat {
      padding: 2rem;
    }

    .impact-stat-value {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      background: var(--gradient-purple);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
      white-space: nowrap;
    }

    .impact-stat-label {
      font-size: 0.95rem;
      color: var(--text-secondary);
    }

    /* Team Section */
    .team {
      background: var(--bg-secondary);
    }

    .team-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
    }

    .team-header h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .team-header h2 .serif {
      color: var(--accent-secondary);
    }

    .team-header p {
      color: var(--text-secondary);
      font-size: 1.1rem;
    }

    .team-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .team-card {
      flex: 0 1 calc(33.333% - 1rem);
      min-width: 250px;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s;
    }

    .team-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-hover);
    }

    .team-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 1.25rem;
      object-fit: cover;
      object-position: center top;
      border: 3px solid var(--border-color);
      transition: all 0.3s;
    }

    .team-card:hover .team-photo {
      border-color: var(--accent-primary);
      transform: scale(1.05);
    }

    .team-name {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      color: var(--text-primary);
    }

    .team-role {
      font-size: 0.9rem;
      color: var(--accent-secondary);
      margin-bottom: 0.75rem;
    }

    .team-bio {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .about-cta {
      background: var(--bg-primary);
      text-align: center;
      padding: 6rem 2rem;
    }

    .about-cta .cta-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .about-cta h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .about-cta h2 .serif {
      color: var(--accent-secondary);
    }

    .about-cta p {
      color: var(--text-secondary);
      font-size: 1.15rem;
      margin-bottom: 2rem;
    }

    @media (max-width: 1024px) {
      .story-grid,
      .approach-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

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

      .team-grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

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

      .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
      }
    }

    /* Nashville HQ Section */
    .nashville-hq {
      padding: 6rem 0;
      background: var(--bg-secondary);
    }

    .nashville-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .nashville-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .nashville-desc {
      color: var(--text-secondary);
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .nashville-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .nashville-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nashville-feature .feature-emoji {
      font-size: 1.5rem;
    }

    .nashville-feature span:last-child {
      font-weight: 500;
      color: var(--text-primary);
    }

    .nashville-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    .nashville-card-bg {
      position: absolute;
      top: -20px;
      right: -20px;
      font-size: 6rem;
      opacity: 0.1;
    }

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

    .nashville-card-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
    }

    .nashville-card-content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .nashville-card-content p {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .nashville-badge {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background: rgba(139, 92, 246, 0.15);
      border-radius: 100px;
    }

    .nashville-badge span {
      font-weight: 600;
      color: var(--accent-primary);
    }

    .nashville-stats {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .nashville-stat {
      text-align: center;
      padding: 1rem;
      background: var(--bg-secondary);
      border-radius: 12px;
    }

    .nashville-stat .stat-emoji {
      font-size: 1.5rem;
      margin-bottom: 0.25rem;
    }

    .nashville-stat span {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    @media (max-width: 900px) {
      .nashville-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .nashville-card {
        max-width: 400px;
        margin: 0 auto;
      }
    }

    @media (max-width: 600px) {
      .nashville-hq {
        padding: 4rem 1.25rem;
      }

      .nashville-title {
        font-size: 1.75rem;
      }

      .nashville-desc {
        font-size: 1rem;
      }

      .nashville-feature .feature-emoji {
        font-size: 1.25rem;
      }

      .nashville-card {
        padding: 1.5rem;
        max-width: 100%;
      }

      .nashville-card-icon {
        font-size: 3rem;
      }

      .nashville-card-content h3 {
        font-size: 1.25rem;
      }

      .nashville-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }

      .nashville-stats {
        gap: 0.75rem;
      }

      .nashville-stat {
        padding: 0.75rem;
      }

      .nashville-stat .stat-emoji {
        font-size: 1.25rem;
      }

      .nashville-stat span {
        font-size: 0.75rem;
      }
    }

    /* ============================================
       CONTACT PAGE
       ============================================ */
    .contact-page {
      min-height: 100vh;
      padding: 8rem 2rem 4rem;
      background: var(--gradient-mesh);
      position: relative;
    }

    .contact-page::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    /* Left Side - Info */
    .contact-info {
      padding: 2rem 0;
    }

    .contact-testimonial {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2rem;
      margin-bottom: 2.5rem;
    }

    .testimonial-quote {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author-block {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .testimonial-photo {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--border-color);
    }

    .testimonial-name {
      display: block;
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-primary);
    }

    .testimonial-role {
      display: block;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .contact-headline {
      margin-bottom: 2.5rem;
    }

    .contact-headline h1 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-primary);
    }

    .contact-headline h1 .serif {
      color: var(--accent-secondary);
    }

    .contact-expect h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 1.25rem;
    }

    .expect-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .expect-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .expect-list li svg {
      flex-shrink: 0;
      margin-top: 2px;
      stroke: var(--accent-secondary);
      opacity: 0.8;
    }

    /* Right Side - Form */
    .contact-form-wrapper {
      position: sticky;
      top: 6rem;
    }

    .contact-form-card {
      background: var(--text-primary);
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    }

    .contact-form-card h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--bg-primary);
      margin-bottom: 0.5rem;
    }

    .form-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      line-height: 1.5;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--bg-secondary);
    }

    .form-group input,
    .form-group select {
      padding: 0.875rem 1rem;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      font-size: 0.95rem;
      font-family: inherit;
      background: white;
      color: var(--bg-primary);
      transition: all 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--accent-primary);
      box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
    }

    .form-group input::placeholder {
      color: #a0a0a0;
    }

    .form-group select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6b7b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: var(--bg-primary);
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 100px;
      font-size: 1rem;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 0.5rem;
      width: fit-content;
    }

    .btn-submit:hover {
      background: var(--bg-secondary);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-submit svg {
      transition: transform 0.2s;
    }

    .btn-submit:hover svg {
      transform: translateX(4px);
    }

    /* Contact Page Responsive */
    @media (max-width: 1024px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .contact-form-wrapper {
        position: static;
      }

      .contact-info {
        order: 1;
      }

      .contact-form-wrapper {
        order: 0;
      }
    }

    @media (max-width: 600px) {
      .contact-page {
        padding: 7rem 1rem 3rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .contact-form-card {
        padding: 1.75rem;
      }

      .contact-form-card h2 {
        font-size: 1.5rem;
      }
    }

    /* Contact Hub Page */
    .contact-hub {
      min-height: 100vh;
      padding: 10rem 2rem 5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-mesh), var(--bg-primary);
    }

    .contact-hub-container {
      max-width: 1000px;
      width: 100%;
    }

    .contact-hub-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .contact-hub-header h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .contact-hub-header p {
      font-size: 1.25rem;
      color: var(--text-secondary);
    }

    .contact-hub-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .contact-hub-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .contact-hub-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-hover);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .contact-hub-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.75rem;
    }

    .contact-hub-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.75rem;
    }

    .contact-hub-card p {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .contact-hub-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--accent-secondary);
      font-weight: 500;
      font-size: 0.95rem;
    }

    .contact-hub-link svg {
      transition: transform 0.2s;
    }

    .contact-hub-card:hover .contact-hub-link svg {
      transform: translateX(4px);
    }

    /* Contact Hub Responsive */
    @media (max-width: 900px) {
      .contact-hub-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
      }
    }

    @media (max-width: 600px) {
      .contact-hub {
        padding: 8rem 1rem 3rem;
      }

      .contact-hub-header h1 {
        font-size: 2.5rem;
      }

      .contact-hub-header p {
        font-size: 1rem;
      }

      .contact-hub-card {
        padding: 2rem 1.5rem;
      }
    }

    /* ============================================
       SERVICE PAGES (Staffing, etc.)
       ============================================ */

    /* Service Hero */
    .service-hero {
      min-height: 100vh;
      padding: 8rem 2rem 4rem;
      background: var(--gradient-mesh), var(--bg-primary);
      display: flex;
      align-items: center;
    }

    .service-hero-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .service-hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--accent-secondary);
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .service-hero-content h1 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .service-hero-subtitle {
      font-size: 1.25rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 2rem;
      max-width: 500px;
    }

    .service-hero-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .service-hero-visual {
      display: flex;
      justify-content: center;
    }

    /* Service Problem Section */
    .service-problem {
      padding: 6rem 2rem;
      background: var(--bg-secondary);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .problem-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
    }

    .problem-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .problem-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--text-primary);
    }

    .problem-card p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* Service How Section */
    .service-how {
      padding: 6rem 2rem;
      background: var(--bg-primary);
    }

    .how-steps {
      max-width: 800px;
      margin: 3rem auto 0;
    }

    .how-step {
      display: flex;
      gap: 2rem;
      padding: 2rem 0;
      border-bottom: 1px solid var(--border-color);
    }

    .how-step:last-child {
      border-bottom: none;
    }

    .step-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent-secondary);
      min-width: 60px;
    }

    .step-content h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

    .step-content p {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Service Features Section */
    .service-features {
      padding: 6rem 2rem;
      background: var(--bg-secondary);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.2s;
    }

    .feature-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-2px);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .feature-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

    .feature-card p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* Beyond Subs Section */
    .beyond-subs-section {
      padding: 6rem 2rem;
      background: var(--bg-secondary);
    }

    .positions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .position-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.2s;
    }

    .position-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-2px);
    }

    .position-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .position-card h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

    .position-card p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    @media (max-width: 1024px) {
      .positions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .beyond-subs-section {
        padding: 4rem 1.5rem;
      }

      .positions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .position-card {
        padding: 1.25rem 1rem;
      }

      .position-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
      }

      .position-card h3 {
        font-size: 0.9rem;
      }

      .position-card p {
        font-size: 0.8rem;
      }
    }

    /* Service Results Section */
    .service-results {
      padding: 6rem 2rem;
      background: var(--bg-primary);
    }

    .results-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      margin-bottom: 4rem;
    }

    .stat-block {
      text-align: center;
      padding: 2rem;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
    }

    .stat-block .stat-value {
      display: block;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent-secondary);
      margin-bottom: 0.5rem;
    }

    .stat-block .stat-label {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .service-testimonial-block {
      max-width: 700px;
      margin: 0 auto;
    }

    .service-testimonial-block .testimonial-card.featured {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
    }

    .service-testimonial-block .testimonial-text {
      font-size: 1.25rem;
      line-height: 1.7;
    }

    /* Service Case Study Section */
    .service-case-study {
      padding: 6rem 2rem;
      background: var(--bg-secondary);
    }

    .case-study-spotlight {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      overflow: hidden;
    }

    .spotlight-image {
      height: 100%;
      min-height: 400px;
    }

    .spotlight-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .spotlight-content {
      padding: 3rem;
      padding-left: 0;
    }

    .spotlight-content h3 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .spotlight-lead {
      font-size: 1.1rem;
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }

    .spotlight-stats {
      display: flex;
      gap: 2rem;
      margin-bottom: 1.5rem;
    }

    .spotlight-stat .stat-value {
      display: block;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent-secondary);
    }

    .spotlight-stat .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .spotlight-text {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    /* Service Page Responsive */
    @media (max-width: 1024px) {
      .service-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .service-hero-subtitle {
        max-width: none;
      }

      .service-hero-ctas {
        justify-content: center;
      }

      .service-hero-visual {
        order: -1;
      }

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

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

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

      .case-study-spotlight {
        grid-template-columns: 1fr;
      }

      .spotlight-image {
        min-height: 250px;
      }

      .spotlight-content {
        padding: 2rem;
      }
    }

    @media (max-width: 600px) {
      .service-hero {
        padding: 7rem 1rem 3rem;
        min-height: auto;
      }

      .problem-grid {
        grid-template-columns: 1fr;
      }

      .how-step {
        flex-direction: column;
        gap: 1rem;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .results-stats {
        grid-template-columns: 1fr;
      }

      .spotlight-stats {
        flex-direction: column;
        gap: 1rem;
      }

      /* Service hero visual overflow fix */
      .service-hero-visual {
        max-width: 100%;
        overflow: hidden;
      }

      /* Extended Learning hero visual refinements */
      .visual-extended {
        max-width: 100%;
      }

      .program-card-banner {
        height: 60px;
      }

      .program-emoji {
        font-size: 2rem;
      }

      .program-card-content {
        padding: 1rem;
      }

      .program-card-content h4 {
        font-size: 1rem;
      }

      .program-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
      }

      .program-card-mini {
        padding: 0.75rem;
      }

      .mini-emoji {
        font-size: 1.25rem;
      }

      .mini-name {
        font-size: 0.8rem;
      }

      .mini-status {
        font-size: 0.75rem;
      }
    }

    /* ============================================
       EXTENDED LEARNING PAGE
       ============================================ */

    /* Impact Stats Section - Simple */
    .impact-stats-simple {
      padding: 6rem 2rem;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .stats-grid-simple {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      margin-top: 3rem;
      text-align: center;
    }

    .stat-simple-value {
      font-size: clamp(3rem, 6vw, 4rem);
      font-weight: 700;
      color: #f59e0b;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-simple-label {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    .stat-simple-detail {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    @media (max-width: 900px) {
      .stats-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (max-width: 500px) {
      .stats-grid-simple {
        grid-template-columns: 1fr;
      }
    }

    /* Programs Section */
    .programs-section {
      padding: 6rem 2rem;
      background: var(--bg-primary);
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .program-block {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      transition: all 0.2s;
    }

    .program-block:hover {
      border-color: var(--border-hover);
    }

    .program-block-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .program-block h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.75rem;
    }

    .program-block > p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .program-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .program-features li {
      font-size: 0.9rem;
      color: var(--text-secondary);
      padding-left: 1.25rem;
      position: relative;
    }

    .program-features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #10b981;
      font-weight: 600;
    }

    /* Model Grid */
    .model-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .model-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2.5rem 2rem;
    }

    .model-number {
      font-size: 1rem;
      font-weight: 700;
      color: #f59e0b;
      margin-bottom: 1rem;
    }

    .model-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.75rem;
    }

    .model-card > p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .model-proof {
      background: var(--bg-secondary);
      border-radius: 12px;
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .proof-stat {
      font-size: 1.5rem;
      font-weight: 700;
      color: #f59e0b;
    }

    .proof-label {
      font-size: 0.8rem;
      color: var(--text-secondary);
    }

    /* Funding Section */
    .funding-section {
      padding: 6rem 2rem;
      background: var(--bg-secondary);
    }

    .funding-card {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 3rem;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 3rem;
      align-items: center;
    }

    .funding-content h3 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .funding-content > p {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .funding-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .funding-list li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .funding-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .funding-stat-block {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 20px;
      padding: 3rem;
      text-align: center;
    }

    .funding-stat-value {
      display: block;
      font-size: 3.5rem;
      font-weight: 700;
      color: #10b981;
      margin-bottom: 0.5rem;
    }

    .funding-stat-label {
      font-size: 0.95rem;
      color: var(--text-secondary);
    }

    /* Extended Learning Responsive */
    @media (max-width: 1024px) {
      .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .programs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      .model-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      .funding-card {
        grid-template-columns: 1fr;
      }

      .funding-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .impact-stats-grid {
        grid-template-columns: 1fr;
      }

      .impact-stat-value {
        font-size: 2.5rem;
      }

      .funding-card {
        padding: 2rem;
      }

      .funding-content h3 {
        font-size: 1.5rem;
      }

      .funding-stat-value {
        font-size: 2.5rem;
      }

      .programs-grid,
      .model-grid {
        max-width: 100%;
      }

      .program-block,
      .model-card {
        padding: 1.75rem 1.5rem;
      }

      .program-block h3,
      .model-card h3 {
        font-size: 1.1rem;
      }

      .model-proof {
        flex-direction: column;
        gap: 0.25rem;
        text-align: left;
      }
    }

    /* ============================================
       FEATURE SHOWCASE SECTIONS
       ============================================ */

    .feature-showcase {
      padding: 6rem 2rem;
      background: var(--bg-primary);
    }

    .feature-showcase.alt {
      background: var(--bg-secondary);
    }

    .feature-showcase-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .feature-showcase-grid.reverse {
      direction: rtl;
    }

    .feature-showcase-grid.reverse > * {
      direction: ltr;
    }

    .feature-showcase-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .feature-showcase-subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    /* Feature Points */
    .feature-points {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .feature-point {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .feature-point-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-point h4 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    .feature-point p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* Student Info Card Visual */
    .student-info-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .info-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border-color);
    }

    .student-name {
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-primary);
    }

    .editable-badge {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
      padding: 0.35rem 0.75rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .info-card-fields {
      padding: 0.5rem 0;
    }

    .info-field {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border-color);
    }

    .info-field:last-child {
      border-bottom: none;
    }

    .field-icon {
      width: 40px;
      height: 40px;
      background: var(--bg-secondary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .field-content {
      flex: 1;
    }

    .field-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.15rem;
    }

    .field-value {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .field-edit {
      color: #10b981;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
    }

    .info-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      background: rgba(16, 185, 129, 0.08);
    }

    .sync-status {
      font-size: 0.85rem;
      color: #10b981;
      font-weight: 500;
    }

    .sync-time {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* Feature Accordion */
    .feature-accordion {
      margin-bottom: 2rem;
    }

    .accordion-item {
      border-bottom: 1px solid var(--border-color);
    }

    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 0;
      cursor: pointer;
    }

    .accordion-header span:first-child {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-primary);
    }

    .accordion-icon {
      font-size: 1.25rem;
      color: var(--text-muted);
    }

    .accordion-item.active .accordion-header span:first-child {
      font-weight: 600;
    }

    .feature-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #10b981;
      font-weight: 500;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .feature-link:hover svg {
      transform: translateX(4px);
    }

    .feature-link svg {
      transition: transform 0.2s;
    }

    /* Broadcast Card Visual */
    .broadcast-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .broadcast-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border-color);
    }

    .broadcast-recipients {
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-primary);
    }

    .broadcast-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .broadcast-channels {
      padding: 0.5rem 0;
    }

    .channel-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border-color);
    }

    .channel-row:last-child {
      border-bottom: none;
    }

    .channel-info {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .channel-icon {
      width: 40px;
      height: 40px;
      background: var(--bg-secondary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .channel-name {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    .channel-sent {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .channel-rate {
      font-size: 1rem;
      font-weight: 600;
    }

    /* Translation Showcase */
    .translation-showcase {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 3rem;
      align-items: start;
      margin-top: 3rem;
    }

    .translation-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .translation-feature-card {
      display: flex;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      transition: all 0.2s;
    }

    .translation-feature-card:hover {
      border-color: var(--border-hover);
    }

    .translation-feature-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .translation-feature-card h4 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.35rem;
      white-space: nowrap;
    }

    .translation-feature-card p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* Translation Preview Visual */
    .translation-preview {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .preview-header {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .original-message {
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.2);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      margin-bottom: 1rem;
    }

    .lang-label {
      font-size: 0.75rem;
      font-weight: 600;
      display: block;
      margin-bottom: 0.5rem;
    }

    .original-message p {
      font-size: 0.9rem;
      color: var(--text-primary);
      line-height: 1.5;
    }

    .translation-arrow {
      text-align: center;
      color: var(--text-muted);
      margin: 0.75rem 0;
    }

    .translated-messages {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .translated-msg {
      background: var(--bg-secondary);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 0.875rem 1rem;
    }

    .translated-msg p {
      font-size: 0.8rem;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    /* Feature Showcase Responsive */
    @media (max-width: 1024px) {
      .feature-showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .feature-showcase-grid.reverse {
        direction: ltr;
      }

      .feature-showcase-visual {
        order: -1;
      }

      .translation-showcase {
        grid-template-columns: 1fr;
      }

      .translation-visual {
        order: -1;
      }
    }

    @media (max-width: 600px) {
      .feature-showcase {
        padding: 4rem 1rem;
      }

      .translated-messages {
        grid-template-columns: 1fr;
      }

      .translation-feature-card {
        flex-direction: column;
        text-align: center;
      }

      .translation-feature-icon {
        margin: 0 auto;
      }
    }

    /* Extended Learning Yellow Theme */
    .extended-hero .service-hero-content h1 .serif {
      color: #f59e0b;
    }

    .extended-hero .btn-primary {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    .extended-hero .btn-primary:hover {
      box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
    }

    .impact-stat-card.featured.extended-accent {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
      border-color: rgba(245, 158, 11, 0.3);
    }

    .extended-cta {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    }

    .extended-cta::before {
      background: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    }

    .btn-primary.extended-btn {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    .btn-primary.extended-btn:hover {
      box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
    }

    /* Model cards yellow accent */
    .model-card .model-number {
      color: #f59e0b;
    }

    /* ============================================
       COMPREHENSIVE MOBILE/TABLET OPTIMIZATIONS
       ============================================ */

    /* Tablet breakpoint (768px - 1024px) */
    @media (max-width: 1024px) and (min-width: 769px) {
      /* Hero ops dashboard tablet refinements */
      .ops-dashboard {
        max-width: 100%;
      }

      .ops-grid {
        gap: 0.75rem;
      }

      /* Service tabs horizontal scroll on tablet */
      .services-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .services-tabs::-webkit-scrollbar {
        display: none;
      }

      /* About page team grid */
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      /* Contact hub grid */
      .contact-hub-grid {
        gap: 1.5rem;
      }
    }

    /* Mobile breakpoint refinements */
    @media (max-width: 768px) {
      /* Global section padding */
      section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }

      .section-container {
        padding: 0;
      }

      /* Hero section mobile */
      .hero {
        padding: 7rem 1.25rem 3rem;
        min-height: auto;
      }

      .hero h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
      }

      .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
      }

      .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
      }

      .hero-ctas .btn-primary,
      .hero-ctas .btn-secondary {
        width: 100%;
        justify-content: center;
      }

      /* Ops dashboard mobile */
      .ops-dashboard {
        max-width: 100%;
        padding: 1rem;
        border-radius: 16px;
      }

      .ops-card {
        padding: 0.875rem;
        gap: 0.75rem;
      }

      .ops-card-icon {
        width: 36px;
        height: 36px;
      }

      .ops-card-icon svg {
        width: 16px;
        height: 16px;
      }

      .ops-card-title {
        font-size: 0.85rem;
      }

      .ops-card-detail {
        font-size: 0.75rem;
      }

      .ops-card-status {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
      }

      .ops-footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
      }

      .ops-stat {
        padding: 0.5rem 0;
      }

      /* Belief section mobile */
      .belief-quote {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        padding: 0 0.5rem;
      }

      /* Service tabs mobile */
      .services-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
      }

      .services-tabs::-webkit-scrollbar {
        display: none;
      }

      .service-tab {
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
      }

      /* Service panel visuals mobile */
      .service-panel-visual {
        padding: 1rem;
      }

      .schedule-board {
        padding: 1rem;
      }

      .schedule-slot {
        padding: 0.75rem;
        gap: 0.5rem;
      }

      .slot-teacher {
        font-size: 0.85rem;
      }

      .teacher-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
      }

      /* About page hero mobile */
      .about-hero {
        padding: 7rem 1.25rem 3rem;
      }

      .about-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
      }

      /* About page story section mobile */
      .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .story-content p {
        font-size: 1rem;
      }

      .story-visual {
        order: -1;
      }

      /* About page team grid mobile */
      .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .team-card {
        padding: 1.5rem;
      }

      .team-photo {
        width: 80px;
        height: 80px;
      }

      .team-name {
        font-size: 1.1rem;
      }

      /* Values grid mobile */
      .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .value-card {
        padding: 1.5rem;
      }

      /* Contact page mobile */
      .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
      }

      .contact-headline h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }

      .contact-testimonial {
        padding: 1.25rem;
      }

      .testimonial-quote {
        font-size: 0.95rem;
      }

      .contact-form-card {
        padding: 1.5rem;
        border-radius: 16px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      /* Contact hub mobile */
      .contact-hub-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .contact-hub-card {
        padding: 1.5rem;
      }

      .contact-hub-icon {
        width: 48px;
        height: 48px;
      }

      /* Service hero mobile */
      .service-hero {
        padding: 7rem 1.25rem 3rem;
      }

      .service-hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
      }

      .service-hero-subtitle {
        font-size: 1rem;
      }

      /* ADA dashboard mobile */
      .ada-dashboard {
        padding: 1rem;
        border-radius: 16px;
      }

      .ada-metric-value {
        font-size: 2.5rem;
      }

      .ada-metric-grid {
        gap: 0.75rem;
      }

      .ada-metric-card {
        padding: 0.75rem;
      }

      .ada-metric-card-value {
        font-size: 1.25rem;
      }

      /* Comparison section mobile */
      .before-panel,
      .after-panel {
        padding: 1.5rem;
        border-radius: 16px;
      }

      .chaos-bubble {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
      }

      .spur-logo-circle {
        width: 80px;
        height: 80px;
      }

      .spur-logo-circle img {
        width: 50px;
      }

      /* Calculator section mobile */
      .calculator-inputs,
      .calculator-results {
        padding: 1.5rem;
        border-radius: 16px;
      }

      .result-main-value {
        font-size: 2.25rem;
      }

      /* Feature showcase mobile */
      .feature-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .feature-showcase-grid.reverse {
        direction: ltr;
      }

      .feature-showcase-visual {
        order: -1;
      }

      .feature-showcase-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }

      /* FAQ mobile */
      .faq-grid {
        gap: 0.75rem;
      }

      .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
      }

      .faq-answer {
        padding: 0 1rem 1rem;
      }

      /* CTA section mobile */
      .cta {
        padding: 4rem 1.25rem;
      }

      .cta h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }

      .cta-buttons {
        flex-direction: column;
        width: 100%;
      }

      .cta-buttons .btn-primary,
      .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
      }

      /* Footer mobile */
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
      }

      .footer-legal {
        flex-wrap: wrap;
      }
    }

    /* Small mobile breakpoint */
    @media (max-width: 480px) {
      /* Extra small adjustments */
      .hero h1 {
        font-size: 1.75rem;
      }

      .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
      }

      /* Ops cards stack content */
      .ops-card {
        flex-wrap: wrap;
      }

      .ops-card-content {
        flex: 1 1 100%;
        order: 2;
        margin-top: 0.5rem;
      }

      .ops-card-status {
        order: 1;
      }

      /* Logos section */
      .logos-grid {
        gap: 0.75rem 1.5rem;
      }

      .logo-item {
        font-size: 0.85rem;
      }

      /* Results stats */
      .stat-block {
        padding: 1.25rem;
      }

      .stat-block .stat-value {
        font-size: 2rem;
      }

      /* Testimonials */
      .testimonial-card {
        padding: 1.25rem;
      }

      /* Buttons */
      .btn-primary,
      .btn-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
      }

      /* Section titles */
      .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }

      /* Problem cards */
      .problem-card {
        padding: 1.25rem;
      }

      .problem-icon {
        font-size: 2rem;
      }

      /* Agent cards */
      .agent-card {
        padding: 1.25rem;
      }

      /* Tailwind cards */
      .tailwind-card {
        padding: 1.25rem;
      }

      /* Info field mobile compact */
      .info-field {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
      }

      .field-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
      }

      .field-label {
        font-size: 0.75rem;
      }

      .field-value {
        font-size: 0.75rem;
      }

      .field-edit {
        font-size: 0.7rem;
      }

      .info-card-header {
        padding: 0.75rem 1rem;
      }

      .info-card-footer {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
      }

      .student-name {
        font-size: 0.9rem;
      }
    }

    /* Landscape mobile orientation */
    @media (max-width: 768px) and (orientation: landscape) {
      .hero {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 2rem;
      }

      .service-hero {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 2rem;
      }

      .hero-visual {
        margin-top: 1rem;
      }
    }

    /* Touch device hover states */
    @media (hover: none) {
      .mega-menu-card:hover,
      .service-card:hover,
      .feature-card:hover,
      .agent-card:hover,
      .problem-card:hover,
      .value-card:hover,
      .model-card:hover,
      .program-block:hover {
        transform: none;
      }
    }
