    /* ========================= Base Styles ========================= */
    :root {
        --md-gradient-start: #667eea;
        --md-gradient-end: #764ba2;
        --md-gradient-start-rgb: 102, 126, 234;
        --md-gradient-end-rgb: 118, 75, 162;
        --primary-gradient: linear-gradient(135deg, var(--md-gradient-start) 0%, var(--md-gradient-end) 100%);
        --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --dark-bg: #1a1a2e;
        --dark-bg-2: #16213e;
        --text-dark: #2d3748;
        --text-muted: #718096;
    }

    /* ========================= Scroll-aware Nav =========================
       A11Y-009 (AUDIT_2026-05-20): verified the .scrolled state keeps the
       background at rgba(26, 26, 46, 0.96) / rgba(22, 33, 62, 0.96) — i.e.,
       96% opaque dark navy. White text on this background passes WCAG AA
       (contrast ratio > 13:1). No contrast fix needed.

       Q-FE-016 (AUDIT_2026-05-20): the brand-gradient colors (#1a1a2e,
       #16213e) are now sourced from the --dark-bg and --dark-bg-2 custom
       properties defined at the top of this file rather than literal hex.
       Single source of truth for the brand gradient. */
    .landing-nav {
        background: linear-gradient(135deg, var(--dark-bg, #1a1a2e) 0%, var(--dark-bg-2, #16213e) 100%);
        padding: 1rem 0;
        transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    }
    .landing-nav.scrolled {
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.96) 0%, rgba(22, 33, 62, 0.96) 100%);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 4px 18px -6px rgba(0, 0, 0, 0.45);
        padding: 0.5rem 0;
    }

    /* ========================= Hero badge gentle pulse ========================= */
    .hero-badge {
        position: relative;
    }
    .hero-badge::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50px;
        box-shadow: 0 0 0 0 rgba(165, 180, 252, 0.5);
        animation: hero-badge-pulse 2.4s ease-out infinite;
        pointer-events: none;
    }
    @keyframes hero-badge-pulse {
        0%   { box-shadow: 0 0 0 0 rgba(165, 180, 252, 0.45); }
        70%  { box-shadow: 0 0 0 14px rgba(165, 180, 252, 0); }
        100% { box-shadow: 0 0 0 0 rgba(165, 180, 252, 0); }
    }
    @media (prefers-reduced-motion: reduce) {
        .hero-badge::before { animation: none; }
    }

    /* ========================= Nav buttons ========================= */
    .btn-nav-signin {
        background: transparent;
        color: #fff !important;
        border: 2px solid #fff;
        font-weight: 600;
        transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    }
    .btn-nav-signin:hover {
        background: var(--primary-gradient);
        border-color: transparent;
        color: #fff !important;
    }
    .btn-nav-getstarted {
        background: var(--primary-gradient);
        color: #fff !important;
        border: none;
        font-weight: 600;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .btn-nav-getstarted:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(var(--md-gradient-start-rgb), 0.4);
        color: #fff !important;
    }

    /* ========================= Accessibility focus states ========================= */
    .btn-hero-primary:focus-visible,
    .btn-hero-outline:focus-visible,
    .btn-cta-primary:focus-visible,
    .btn-cta-outline:focus-visible {
        outline: 3px solid #fff;
        outline-offset: 3px;
        box-shadow: 0 0 0 6px rgba(var(--md-gradient-start-rgb), 0.45);
    }
    .landing-nav .nav-link:focus-visible,
    .landing-nav .navbar-brand:focus-visible {
        outline: 2px solid #fff;
        outline-offset: 2px;
        border-radius: 4px;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: var(--text-dark);
        overflow-x: hidden;
    }

    /* ========================= Hero Section ========================= */
    .hero-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        position: relative;
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: 100vh;
        overflow: hidden;
        color: #fff !important;
    }

    .hero-section * {
        color: inherit;
    }

    .hero-gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 150px;
        background: radial-gradient(ellipse at 30% 20%, rgba(var(--md-gradient-start-rgb), 0.15) 0%, transparent 50%),
                    radial-gradient(ellipse at 70% 80%, rgba(var(--md-gradient-end-rgb), 0.15) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 3rem 0;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(var(--md-gradient-start-rgb), 0.2);
        color: #a5b4fc;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 500;
        border: 1px solid rgba(var(--md-gradient-start-rgb), 0.3);
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: #fff !important;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .gradient-text {
        background: linear-gradient(135deg, var(--md-gradient-start) 0%, #a78bfa 50%, #f093fb 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent !important;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8) !important;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .btn-hero-primary {
        background: var(--primary-gradient);
        color: #fff !important;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(var(--md-gradient-start-rgb), 0.4);
        color: #fff !important;
    }

    .btn-hero-outline {
        background: transparent;
        color: #fff !important;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .btn-hero-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: #fff !important;
    }

    .hero-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.9rem;
    }

    .trust-item i {
        color: #43e97b !important;
    }

    /* Hero Visual */
    .hero-visual {
        position: relative;
        z-index: 2;
    }

    .dashboard-preview {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .preview-screenshot {
        width: 100%;
        height: auto;
        display: block;
    }

    .preview-header {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        border-bottom: 1px solid #e9ecef;
    }

    .preview-dots {
        display: flex;
        gap: 0.5rem;
    }

    .preview-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #dee2e6;
    }

    .preview-dots span:first-child { background: #ff6b6b; }
    .preview-dots span:nth-child(2) { background: #ffd93d; }
    .preview-dots span:last-child { background: #6bcb77; }

    .preview-title {
        color: var(--text-muted);
        font-size: 0.875rem;
    }

    .preview-content {
        padding: 1.5rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .preview-card {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 1.25rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .preview-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.25rem;
        /* VD-007 (AUDIT_2026-05-22): default mockup-icon background is a
           neutral navy so the mockup reads as calm + on-brand. Previously
           the markup had 4 different inline-style gradient palettes per
           card which: (a) didn't match the real app's visual language,
           (b) drowned out the marketing copy, (c) felt trend-of-the-day.
           First icon in each cluster gets .preview-icon--featured to
           establish a focal point — same brand purple the real app uses. */
        background: #344767;
    }
    .preview-icon--featured {
        background: linear-gradient(135deg, var(--md-gradient-start) 0%, var(--md-gradient-end) 100%);
    }

    .preview-info {
        display: flex;
        flex-direction: column;
    }

    .preview-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .preview-value {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-dark);
    }

    /* Dashboard Carousel */
    .dashboard-carousel {
        position: relative;
    }

    .dashboard-slide {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .dashboard-slide.active {
        display: block;
    }

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

    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .carousel-indicators .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .carousel-indicators .indicator:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .carousel-indicators .indicator.active {
        background: var(--md-gradient-start);
        transform: scale(1.2);
    }

    /* Job Management Slide */
    .preview-content-list {
        padding: 1rem;
    }

    .job-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }

    .job-item:last-child {
        margin-bottom: 0;
    }

    .job-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1rem;
        flex-shrink: 0;
        /* VD-007 (AUDIT_2026-05-22): see .preview-icon for rationale. */
        background: #344767;
    }
    .job-icon--featured {
        background: linear-gradient(135deg, var(--md-gradient-start) 0%, var(--md-gradient-end) 100%);
    }

    .job-details {
        flex: 1;
        min-width: 0;
    }

    .job-title {
        display: block;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .job-meta {
        display: block;
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .job-status {
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        flex-shrink: 0;
    }

    .job-status.filled {
        background: rgba(67, 233, 123, 0.15);
        color: #059669;
    }

    .job-status.open {
        background: rgba(var(--md-gradient-start-rgb), 0.15);
        color: var(--md-gradient-start);
    }

    .job-status.pending {
        background: rgba(251, 146, 60, 0.15);
        color: #ea580c;
    }

    /* Choir Management Slide */
    .preview-content-choir {
        padding: 1.25rem;
    }

    .choir-stats {
        display: flex;
        justify-content: space-around;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #edf2f7;
    }

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

    .choir-stat .stat-value {
        display: block;
        font-size: 1.75rem;
        font-weight: 800;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .choir-stat .stat-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        text-transform: uppercase;
    }

    .voice-parts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .voice-part {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        background: #f8f9fa;
        border-radius: 10px;
    }

    .part-name {
        font-weight: 500;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .part-count {
        background: var(--primary-gradient);
        color: #fff;
        padding: 0.25rem 0.6rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    /* Calendar Slide */
    .preview-calendar {
        padding: 1rem;
    }

    .calendar-header {
        text-align: center;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .calendar-month {
        font-weight: 700;
        color: var(--text-dark);
        font-size: 1rem;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 0.25rem;
    }

    .cal-day {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        border-radius: 8px;
        color: var(--text-dark);
    }

    .cal-day.header {
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.7rem;
    }

    .cal-day.has-event {
        background: linear-gradient(135deg, rgba(var(--md-gradient-start-rgb), 0.2) 0%, rgba(var(--md-gradient-end-rgb), 0.2) 100%);
        color: var(--md-gradient-start);
        font-weight: 600;
    }

    .cal-day.other {
        color: #cbd5e0;
    }

    /* Messages Slide */
    .preview-messages {
        padding: 1rem;
    }

    .message-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        transition: background 0.2s ease;
    }

    .message-item:hover {
        background: #f8f9fa;
    }

    .message-item.unread {
        background: rgba(var(--md-gradient-start-rgb), 0.05);
    }

    .msg-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.8rem;
        font-weight: 600;
        flex-shrink: 0;
        /* VD-007 (AUDIT_2026-05-22): see .preview-icon for rationale. */
        background: #344767;
    }
    .msg-avatar--featured {
        background: linear-gradient(135deg, var(--md-gradient-start) 0%, var(--md-gradient-end) 100%);
    }

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

    .msg-name {
        display: block;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.85rem;
    }

    .msg-preview {
        display: block;
        font-size: 0.75rem;
        color: var(--text-muted);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .msg-time {
        font-size: 0.7rem;
        color: var(--text-muted);
        flex-shrink: 0;
    }

    /* ========================= Section Styles ========================= */
    .section-header {
        margin-bottom: 4rem;
    }

    .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, rgba(var(--md-gradient-start-rgb), 0.1) 0%, rgba(var(--md-gradient-end-rgb), 0.1) 100%);
        color: var(--md-gradient-start);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2.75rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
    }

    /* ========================= Features Section ========================= */
    .features-section {
        padding: 100px 0;
        background: #fff;
    }

    .feature-card {
        background: #fff;
        border-radius: 20px;
        padding: 2rem;
        height: 100%;
        border: 1px solid #edf2f7;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon.bg-brand-gradient {
        background: var(--primary-gradient);
    }

    .feature-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .feature-description {
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-muted);
        font-size: 0.9rem;
        padding: 0.35rem 0;
    }

    .feature-list li i {
        color: var(--md-gradient-start);
        font-size: 0.75rem;
    }

    /* ========================= How It Works ========================= */
    .how-it-works-section {
        padding: 100px 0;
        background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    }

    .steps-container {
        position: relative;
    }

    .step-item {
        display: flex;
        gap: 1.5rem;
        padding: 1.5rem 0;
        position: relative;
    }

    .step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 25px;
        top: 70px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--md-gradient-start) 0%, var(--md-gradient-end) 100%);
    }

    .step-number {
        width: 52px;
        height: 52px;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .step-content h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .step-content p {
        color: var(--text-muted);
        line-height: 1.7;
        margin: 0;
    }

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

    .visual-card {
        background: #fff;
        border-radius: 24px;
        padding: 3rem;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        border: 1px solid #edf2f7;
    }

    .visual-logo {
        max-height: 100px;
        margin-bottom: 1.5rem;
    }

    .visual-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 2rem;
    }

    .visual-stats {
        display: flex;
        gap: 2rem;
        justify-content: center;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

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

    /* ========================= Testimonials Section ========================= */
    .testimonials-section {
        padding: 100px 0;
        background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    }

    .testimonial-card {
        background: #fff;
        border-radius: 20px;
        padding: 2rem;
        height: 100%;
        border: 1px solid #edf2f7;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .testimonial-stars {
        margin-bottom: 1rem;
        color: #ffc107;
    }

    .testimonial-stars i {
        font-size: 1rem;
        margin-right: 2px;
    }

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

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

    .author-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--md-gradient-start) 0%, var(--md-gradient-end) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.25rem;
    }

    .author-info {
        display: flex;
        flex-direction: column;
    }

    .author-info strong {
        color: var(--text-dark);
        font-weight: 600;
    }

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

    .author-location {
        font-size: 0.8rem !important;
        color: #a0aec0 !important;
    }

    /* ========================= Pricing Preview Section ========================= */
    .pricing-preview-section {
        padding: 100px 0;
        background: #fff;
    }

    .pricing-preview-card {
        background: #fff;
        border-radius: 20px;
        padding: 2rem;
        height: 100%;
        border: 1px solid #edf2f7;
        text-align: center;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
        position: relative;
    }

    .pricing-preview-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .pricing-preview-card.featured {
        border-color: var(--md-gradient-start);
        box-shadow: 0 10px 30px rgba(var(--md-gradient-start-rgb), 0.2);
    }

    .popular-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-gradient);
        color: #fff;
        padding: 0.35rem 1rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .pricing-price {
        margin-bottom: 1.5rem;
    }

    .pricing-price .price {
        font-size: 2.5rem;
        font-weight: 800;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .pricing-price .period {
        color: var(--text-muted);
        font-size: 1rem;
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        text-align: left;
    }

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
        color: var(--text-muted);
        font-size: 0.95rem;
    }

    .pricing-features li i {
        color: var(--md-gradient-start);
    }

    .btn-pricing-primary {
        background: var(--primary-gradient);
        color: #fff;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-weight: 600;
        width: 100%;
        border: none;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .btn-pricing-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(var(--md-gradient-start-rgb), 0.3);
        color: #fff;
    }

    .btn-pricing-outline {
        background: transparent;
        color: var(--md-gradient-start);
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-weight: 600;
        width: 100%;
        border: 2px solid var(--md-gradient-start);
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .btn-pricing-outline:hover {
        background: var(--md-gradient-start);
        color: #fff;
    }

    .btn-link-primary {
        color: var(--md-gradient-start);
        font-weight: 600;
        text-decoration: none;
    }

    .btn-link-primary:hover {
        color: var(--md-gradient-end);
    }

    /* ========================= FAQ Preview Section ========================= */
    .faq-preview-section {
        padding: 100px 0;
        background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    }

    .faq-accordion .accordion-item {
        border: 1px solid #edf2f7;
        border-radius: 12px !important;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .faq-accordion .accordion-button {
        padding: 1.25rem 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
        background: #fff;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, rgba(var(--md-gradient-start-rgb), 0.05) 0%, rgba(var(--md-gradient-end-rgb), 0.05) 100%);
        color: var(--md-gradient-start);
    }

    .faq-accordion .accordion-button:focus {
        box-shadow: none;
    }

    .faq-accordion .accordion-body {
        padding: 1rem 1.5rem 1.5rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* ========================= Trust Badges Section ========================= */
    .trust-badges-section {
        padding: 80px 0;
        background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    }

    .trust-badges-wrapper {
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .trust-badge-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1.5rem 1.25rem;
        background: #fff;
        border-radius: 16px;
        border: 1px solid #edf2f7;
        min-width: 130px;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .trust-badge-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        border-color: var(--md-gradient-start);
    }

    .badge-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--md-gradient-start) 0%, var(--md-gradient-end) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.5rem;
    }

    .badge-icon.gdpr {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        font-size: 0.7rem;
        font-weight: 700;
    }

    .badge-icon.ccpa {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        font-size: 0.7rem;
        font-weight: 700;
    }

    .badge-icon.pci {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .badge-icon.wcag {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .badge-icon.soc2 {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        font-size: 0.65rem;
        font-weight: 700;
    }

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

    .badge-text strong {
        display: block;
        color: var(--text-dark);
        font-weight: 700;
        font-size: 0.9rem;
    }

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

    .trust-badges-secondary {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .trust-badge-small {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: #fff;
        border-radius: 50px;
        border: 1px solid #edf2f7;
        font-size: 0.8rem;
        color: var(--text-muted);
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .trust-badge-small:hover {
        border-color: var(--md-gradient-start);
        color: var(--md-gradient-start);
    }

    .trust-badge-small i {
        font-size: 1rem;
        color: var(--md-gradient-start);
    }

    .trust-badge-small .stripe-logo {
        height: 16px;
        width: auto;
    }

    /* ========================= User Roles Section ========================= */
    .user-roles-section {
        padding: 100px 0;
        background: #fff;
    }

    .role-card {
        border-radius: 24px;
        padding: 2.5rem;
        height: 100%;
        color: #fff;
    }

    .role-director {
        background: linear-gradient(135deg, var(--md-gradient-start) 0%, var(--md-gradient-end) 100%);
    }

    .role-musician {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    .role-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .role-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
    }

    .role-card h3 {
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0;
    }

    .role-features {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .role-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .role-features li:last-child {
        border-bottom: none;
    }

    .role-features li i {
        font-size: 1.25rem;
    }

    .btn-role {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
        width: 100%;
        justify-content: center;
    }

    .btn-role:hover {
        background: rgba(255, 255, 255, 0.3);
        color: #fff;
        transform: translateY(-2px);
    }

    /* ========================= CTA Section ========================= */
    .cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        color: #fff !important;
    }

    .cta-content h2 {
        font-size: 2.75rem;
        font-weight: 800;
        color: #fff !important;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.8) !important;
        margin-bottom: 2rem;
    }

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

    .btn-cta-primary {
        background: var(--primary-gradient);
        color: #fff !important;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .btn-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(var(--md-gradient-start-rgb), 0.4);
        color: #fff !important;
    }

    .btn-cta-outline {
        background: transparent;
        color: #fff !important;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .btn-cta-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: #fff !important;
    }

    .cta-trust {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-trust span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.9rem;
    }

    .cta-trust span i {
        color: #43e97b !important;
    }

    /* ========================= Footer ========================= */
    .footer-section {
        background: #0f0f1a;
        padding: 60px 0 30px;
        color: #fff !important;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.6) !important;
        line-height: 1.7;
    }

    .footer-section h5 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
        color: #fff !important;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.6) !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #fff !important;
    }

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

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff !important;
        font-size: 1.25rem;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }

    .social-links a:hover {
        background: var(--primary-gradient);
        transform: translateY(-3px);
        color: #fff !important;
    }

    .footer-bottom {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5) !important;
        margin: 0;
        font-size: 0.9rem;
    }

    /* Newsletter Signup */
    .newsletter-signup {
        text-align: center;
    }

    .newsletter-form .input-group {
        max-width: 300px;
        margin: 0 auto;
    }

    .newsletter-form .form-control {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        padding: 0.75rem 1rem;
        border-radius: 10px 0 0 10px;
    }

    .newsletter-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-form .form-control:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--md-gradient-start);
        box-shadow: none;
        color: #fff;
    }

    .btn-newsletter {
        background: var(--primary-gradient);
        color: #fff;
        border: none;
        padding: 0.75rem 1rem;
        border-radius: 0 10px 10px 0;
    }

    .btn-newsletter:hover {
        background: linear-gradient(135deg, var(--md-gradient-end) 0%, var(--md-gradient-start) 100%);
        color: #fff;
    }

    .newsletter-hint {
        display: block;
        margin-top: 0.5rem;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.75rem;
    }

    /* ========================= Mobile Navigation Fix ========================= */
    @media (max-width: 991px) {
        .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            z-index: 1031;
            box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.3);
            padding: 15px 20px;
            border-radius: 0 0 12px 12px;
        }

        .navbar-nav {
            padding: 10px 0;
        }

        .navbar-nav .nav-item {
            margin: 5px 0;
        }

        .navbar-nav .nav-item a {
            padding: 10px 15px !important;
            display: block;
        }

        .navbar-nav .nav-item .btn {
            margin: 10px 0 5px 0;
            width: 100%;
            text-align: center;
        }

        .navbar-toggler {
            border: none;
            padding: 5px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
            outline: 2px solid transparent;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
    }

    /* ========================= Responsive ========================= */
    @media (max-width: 992px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .cta-content h2 {
            font-size: 2rem;
        }

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

        .trust-badges-wrapper {
            gap: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        /* Hero section mobile adjustments */
        .hero-section {
            padding-top: 20px;
            padding-bottom: 40px;
            min-height: auto;
        }

        .hero-content {
            padding: 1rem 0;
            text-align: center;
        }

        /* Navbar mobile alignment fix */
        .navbar .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .navbar-brand {
            flex: 1;
            max-width: calc(100% - 60px);
        }

        .navbar-brand img {
            height: 50px !important;
        }

        .navbar-brand span {
            font-size: 1.1rem !important;
        }

        .navbar-toggler {
            margin-right: 0;
            padding: 0.25rem 0.5rem;
            flex-shrink: 0;
        }

        .navbar-collapse {
            width: 100%;
        }

        .hero-title {
            font-size: 2rem;
            text-align: center;
        }

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

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

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

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .btn-hero-primary,
        .btn-hero-outline {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

        .hero-trust {
            flex-direction: column;
            gap: 0.75rem;
            align-items: center;
        }

        .trust-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
        }

        .preview-content {
            grid-template-columns: 1fr;
        }

        .cta-buttons {
            flex-direction: column;
            width: 100%;
        }

        .btn-cta-primary,
        .btn-cta-outline {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

        .cta-trust {
            flex-direction: column;
            gap: 0.75rem;
            align-items: center;
        }

        .cta-trust span {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
        }

        .trust-badges-wrapper {
            flex-direction: column;
            gap: 1rem;
        }

        .trust-badge-item {
            justify-content: center;
        }
    }
