<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom styles for Ambassador page */
@import url('../css/saas_main.css');
@import url('../css/saas_enhanced.css');

:root {
    --bg-section: #f8f9fa;
    --brand-gold: #FFD700;
    --brand-purple: #6a3eea;
    --brand-purple-dark: #4a2c91;
    --text-dark: #232136;
    --shadow-primary: rgba(106, 61, 232, 0.12);
    --shadow-gold: rgba(255, 215, 0, 0.12);
    --shadow-dark: rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn-primary,
.ambassador-hero .btn-primary,
.modal-body .btn-primary,
#calculate-btn {
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-purple-dark));
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    padding: 12px 36px;
    box-shadow: 0 4px 16px var(--shadow-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover,
.ambassador-hero .btn-primary:hover,
.modal-body .btn-primary:hover,
#calculate-btn:hover {
    background: var(--brand-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-gold);
}

.btn-outline-gold,
.ambassador-hero .btn-outline-gold {
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
    font-weight: 700;
    border-radius: 30px;
    padding: 12px 36px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover,
.ambassador-hero .btn-outline-gold:hover {
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-purple-dark));
    border: none;
    color: #fff;
    margin-right: 12px;
    box-shadow: 0 4px 16px var(--shadow-gold);
    transform: translateY(-3px);
}

.ambassador-hero .hero-img {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 8px 32px var(--shadow-primary));
}

@media (max-width: 991px) {
    .ambassador-hero {
        flex-direction: column;
        padding: 50px 0 30px 0;
        min-height: unset;
    }

    .ambassador-hero .hero-img {
        margin-top: 32px;
        max-width: 260px;
    }

    .ambassador-hero h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 575px) {
    .ambassador-hero {
        padding: 30px 0 10px 0;
    }

    .ambassador-hero h1 {
        font-size: 1.3rem;
    }

    .ambassador-hero .btn-primary,
    .ambassador-hero .btn-outline-gold {
        padding: 10px 18px;
        font-size: 1rem;
    }

    .ambassador-hero .hero-img {
        max-width: 180px;
    }
}

/* Shine effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(30deg) translateX(-100%);
    }

    20%,
    100% {
        transform: rotate(30deg) translateX(100%);
    }
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -150px;
    right: -150px;
    animation: pulse 8s infinite alternate;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    bottom: -100px;
    left: -100px;
    animation: pulse 8s infinite alternate-reverse;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px var(--shadow-dark);
}

.cta-section p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px var(--shadow-dark);
}

.cta-section .btn-light {
    background: #fff;
    color: var(--brand-purple);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 20px var(--shadow-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-section .btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-section .btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px var(--shadow-dark);
}

.cta-section .btn-light:hover::before {
    width: 100%;
}

.cta-section .btn-light.shine-effect::after {
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 50px var(--shadow-dark);
}

.modal-header {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-gold));
    color: #fff;
    border-bottom: none;
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 10s infinite;
    opacity: 0.5;
}

.modal-header .modal-title {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-header .modal-title i {
    color: var(--brand-gold);
    text-shadow: 0 2px 4px var(--shadow-dark);
}

.modal-body {
    padding: 30px;
}

/* Ambassador Info Card */
.ambassador-info-card {
    background: linear-gradient(135deg, rgba(var(--brand-purple), 0.05) 0%, rgba(var(--brand-purple-dark), 0.05) 100%);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--brand-gold);
    box-shadow: 0 5px 15px var(--shadow-dark);
    transition: all 0.3s ease;
}

.ambassador-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-dark);
}

.ambassador-info-card i {
    color: var(--brand-gold);
    font-size: 2rem;
}

.ambassador-info-card h6 {
    color: var(--brand-purple);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.modal-body .form-control,
.modal-body .form-select,
.calculator-form .form-control,
.calculator-form .form-select {
    background: var(--bg-card);
    color: var(--text-secondary);
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus,
.calculator-form .form-control:focus,
.calculator-form .form-select:focus {
    box-shadow: 0 0 0 3px rgba(var(--brand-purple-rgb), 0.1);
    border-color: var(--brand-purple);
}

.modal-body label,
.calculator-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.modal-body .form-group.focused label,
.calculator-form .form-group.focused label {
    color: var(--brand-purple);
    font-weight: 600;
}

.modal-body .input-group-text,
.calculator-form .input-group-text {
    background-color: rgba(var(--brand-purple), 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--brand-purple);
    transition: all 0.3s ease;
}

.modal-body .form-control:focus+.input-group-text,
.modal-body .form-select:focus+.input-group-text,
.calculator-form .form-control:focus+.input-group-text,
.calculator-form .form-select:focus+.input-group-text {
    border-color: var(--brand-purple);
    background-color: rgba(var(--brand-purple), 0.1);
}

/* Commission Calculator Styles */
.calculator-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--brand-purple-rgb), 0.05);
    overflow: hidden;
    position: relative;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--brand-purple), 0.05) 0%, rgba(var(--brand-purple-dark), 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

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

.calculator-form h3,
.calculator-results h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.calculator-form h3::after,
.calculator-results h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--brand-gold);
    border-radius: 3px;
}

.calculator-results {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(var(--brand-purple-rgb), 0.03);
    border-radius: 12px;
}

.results-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow-dark);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.result-item.total {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-dark) 100%);
    color: #fff;
    margin-top: 10px;
}

.result-label {
    font-weight: 500;
    color: var(--text-primary);
}

.result-item.total .result-label,
.result-item.total .result-value {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.result-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brand-purple);
}

.result-divider {
    height: 1px;
    background: rgba(var(--brand-purple-rgb), 0.1);
    margin: 10px 0;
}

.commission-notes {
    margin-top: 20px;
}

.note-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.note-item i {
    color: var(--brand-gold);
    margin-right: 10px;
}

/* Dark mode adjustments */
[data-theme="dark"] .ambassador-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .step-content,
[data-theme="dark"] .counter-item,
[data-theme="dark"] .accordion-item,
[data-theme="dark"] .calculator-card,
[data-theme="dark"] .result-item,
[data-theme="dark"] .modal-content,
[data-theme="dark"] .ambassador-info-card {
    background: #232136;
    color: #fff;
}

[data-theme="dark"] .calculator-results {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .ambassador-card h3,
[data-theme="dark"] .testimonial-card h4,
[data-theme="dark"] .steps-section h3,
[data-theme="dark"] .modal-body .counter-item .counter-value,
[data-theme="dark"] .calculator-form h3,
[data-theme="dark"] .calculator-results h3,
[data-theme="dark"] .result-label,
[data-theme="dark"] .modal-body .form-label,
[data-theme="dark"] .ambassador-info-card h6,
[data-theme="dark"] .modal-title,
[data-theme="dark"] .modal-body label {
    color: var(--bs-light);
}

/* Enhanced accordion styles for dark mode */
[data-theme="dark"] .accordion-button {
    color: var(--bs-light);
    background-color: #232136;
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
    color: var(--brand-gold);
    background-color: #2d2a45;
    box-shadow: inset 0 -1px 0 rgba(255, 215, 0, 0.125);
}

[data-theme="dark"] .accordion-button::after {
    color: var(--brand-gold);
    filter: brightness(2.5);
}

[data-theme="dark"] .accordion-button:not(.collapsed)::after {
    filter: brightness(5);
}

[data-theme="dark"] .ambassador-card p,
[data-theme="dark"] .ambassador-card ul li,
[data-theme="dark"] .testimonial-card p,
[data-theme="dark"] .steps-section p,
[data-theme="dark"] .counter-item .counter-title,
[data-theme="dark"] .note-item,
[data-theme="dark"] .form-text,
[data-theme="dark"] .ambassador-info-card p,
[data-theme="dark"] .form-check-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Specific fix for accordion body text in dark mode */
[data-theme="dark"] .accordion-body,
[data-theme="dark"] .accordion-body p,
[data-theme="dark"] .accordion-body li,
[data-theme="dark"] .accordion-body span {
    color: rgba(255, 255, 255, 0.9) !important;
    background-color: #232136;
}

/* Ensure links in accordion body are visible */
[data-theme="dark"] .accordion-body a {
    color: var(--brand-gold) !important;
    text-decoration: underline;
}

/* Additional accordion styling for dark mode */
[data-theme="dark"] .accordion-item {
    border-color: #3a3654;
}

[data-theme="dark"] .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
    border-color: var(--brand-gold);
}

[data-theme="dark"] .accordion-collapse {
    background-color: #232136;
}

/* Ensure proper padding in accordion body */
.accordion-body {
    padding: 1.25rem;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select,
[data-theme="dark"] .calculator-form .form-control,
[data-theme="dark"] .calculator-form .form-select,
[data-theme="dark"] .modal-body .form-control,
[data-theme="dark"] .modal-body .form-select {
    background-color: #18162b;
    border-color: #3a3654;
    color: #fff;
}

[data-theme="dark"] .input-group-text {
    background-color: #3a3654;
    border-color: #3a3654;
    color: var(--brand-gold);
}

[data-theme="dark"] .form-check-label a {
    color: var(--brand-gold);
}

[data-theme="dark"] .result-value {
    color: var(--brand-gold);
}

[data-theme="dark"] .result-divider {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .result-item {
    background: #18162b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 991px) {
    .ambassador-hero {
        padding: 100px 0 60px;
    }

    .ambassador-hero h1 {
        font-size: 2.8rem;
    }

    .cta-section h2 {
        font-size: 2.4rem;
    }

    .steps-section::before {
        left: 30px;
        transform: none;
    }

    .step-card {
        padding-left: 80px;
    }

    .step-number {
        left: 0;
    }

    .calculator-results {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .ambassador-hero {
        padding: 80px 0 50px;
    }

    .ambassador-hero h1 {
        font-size: 2.2rem;
    }

    .ambassador-hero p {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

    .cta-section p {
        font-size: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .calculator-card {
        padding: 20px 15px;
    }

    .calculator-form h3,
    .calculator-results h3 {
        font-size: 1.3rem;
    }

    .result-item {
        padding: 12px;
    }

    .result-value {
        font-size: 1rem;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .ambassador-info-card {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .ambassador-hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .ambassador-hero .d-flex.justify-content-center.align-items-center {
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .ambassador-hero .d-flex.align-items-center {
        margin-bottom: 10px;
    }

    .calculator-form .form-group,
    .modal-body .form-group {
        margin-bottom: 15px;
    }

    .calculator-results {
        padding: 15px;
    }

    .note-item {
        font-size: 0.8rem;
    }

    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-header {
        padding: 15px;
    }

    .modal-header .modal-title {
        font-size: 1.2rem;
    }

    .ambassador-info-card .d-flex {
        flex-direction: column;
    }

    .ambassador-info-card .flex-shrink-0 {
        margin-bottom: 10px;
    }

    .ambassador-info-card .flex-grow-1 {
        margin-left: 0 !important;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .ambassador-hero h1 {
        font-size: 1.5rem;
    }

    .section-title h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .calculator-form h3,
    .calculator-results h3 {
        font-size: 1.1rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

[data-theme="dark"] .result-value {
    color: var(--brand-purple);
}

/* Form validation styles */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group .error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.input-group:focus-within {
    box-shadow: 0 0 0 0.25rem rgba(var(--brand-purple-rgb), 0.25);
    border-radius: 0.375rem;
}

.input-group:focus-within .input-group-text {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

.input-group:focus-within .form-control,
.input-group:focus-within .form-select {
    border-color: var(--brand-purple);
}

[data-bs-theme="dark"] .swiper-button-next,
[data-bs-theme="dark"] .swiper-button-prev {
    background: var(--bs-dark);
}

/* Animation for counting numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-count {
    animation: countUp 1s ease forwards;
}

/* Add gold accent to badges and icons */
.ambassador-card .badge,
.ambassador-card .icon i,
.counter-icon,
.section-title .section-icon i {
    color: var(--brand-gold) !important;
}

.ambassador-card .badge {
    background: var(--brand-gold) !important;
    color: var(--text-dark) !important;
    font-weight: 600;
    border-radius: 0.5rem;
    font-size: 1rem;
    padding: 0.4em 1em;
    margin-bottom: 0.5em;
}

/* Focus state for form fields */
.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 0.2rem var(--shadow-gold)
}

/* Section underline accent */
.section-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-purple));
    border-radius: 2px;
    margin: 18px auto 0 auto;
}

/* Ambassador Benefits Section */
.ambassador-benefits-section {
    background: var(--bg-section);
}

.ambassador-benefits-cards {
    margin-top: 40px;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    padding: 36px 28px 28px 28px;
    text-align: center;
    transition: all 0.3s;
    border: 1.5px solid var(--brand-gold);
    position: relative;
    min-height: 260px;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-purple);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 18px auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gold-bg {
    background: var(--brand-gold);
    color: #333;
}

.purple-bg {
    background: var(--brand-purple);
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-purple);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* How It Works Stepper */
.how-it-works-section {
    background: var(--bg-section);
}

.how-steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
}

.how-step {
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    padding: 28px 22px;
    flex: 1 1 200px;
    min-width: 220px;
    max-width: 48%;
    margin-bottom: 0;
    transition: all 0.3s;
    border: 1.5px solid var(--brand-purple);
}

.how-step:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-6px) scale(1.02);
}

.how-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 18px;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.how-step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-purple);
    margin-bottom: 6px;
}

.how-step-content p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .how-steps-wrapper {
        flex-direction: column;
        gap: 18px;
    }

    .how-step {
        max-width: 100%;
    }
}

/* Dark mode support for new sections */
[data-theme="dark"] .benefit-card,
[data-theme="dark"] .how-step {
    background: #232136;
    color: #fff;
    border-color: var(--brand-purple);
}

[data-theme="dark"] .benefit-card h3,
[data-theme="dark"] .how-step-content h4 {
    color: var(--brand-gold);
}

[data-theme="dark"] .benefit-icon.gold-bg {
    background: var(--brand-gold);
    color: #232136;
}

[data-theme="dark"] .benefit-icon.purple-bg {
    background: var(--brand-purple);
    color: #fff;
}

[data-theme="dark"] .how-step-icon.gold-bg {
    background: var(--brand-gold);
    color: #232136;
}

[data-theme="dark"] .how-step-icon.purple-bg {
    background: var(--brand-purple);
    color: #fff;
}

/* Ambassador Testimonials Section */
.ambassador-testimonials-section {
    background: #f0f4ff;
    padding: 90px 0 80px 0;
}

.ambassador-testimonial-slider {
    margin-top: 40px;
}

.testimonial-card.enhanced {
    background: var(--bg-card);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    padding: 36px 28px 28px 28px;
    text-align: center;
    transition: all 0.3s;
    border: 1.5px solid var(--brand-purple);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.testimonial-card.enhanced:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px) scale(1.03);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 4px solid var(--brand-gold);
    background: #fff;
}

.testimonial-avatar.purple-bg {
    border-color: var(--brand-purple);
    background: var(--brand-purple);
}

.testimonial-avatar.gold-bg {
    border-color: var(--brand-gold);
    background: var(--brand-gold);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-purple);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.98rem;
    color: var(--brand-gold);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.testimonial-rating {
    color: var(--brand-gold);
    margin-bottom: 10px;
}

.testimonial-card.enhanced p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Swiper controls */
.ambassador-testimonial-slider .swiper-pagination {
    margin-top: 18px;
}

.ambassador-testimonial-slider .swiper-button-next,
.ambassador-testimonial-slider .swiper-button-prev {
    color: var(--brand-purple);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px var(--shadow-dark);
    top: 50%;
    transform: translateY(-50%);
}

.ambassador-testimonial-slider .swiper-button-next:after,
.ambassador-testimonial-slider .swiper-button-prev:after {
    font-size: 18px;
}

[data-theme="dark"] .swiper-button-next,
[data-theme="dark"] .swiper-button-prev {
    background: #232136;
    color: var(--brand-gold);
}

@media (max-width: 991px) {
    .ambassador-testimonials-section {
        padding: 60px 0 50px 0;
    }

    .testimonial-card.enhanced {
        padding: 24px 12px 18px 12px;
    }
}

@media (max-width: 767px) {
    .ambassador-testimonials-section {
        padding: 40px 0 30px 0;
    }

    .testimonial-card.enhanced {
        min-height: 260px;
    }
}

/* Dark mode support for testimonials card */
[data-theme="dark"] .testimonial-card.enhanced {
    background: #232136;
    color: rgba(255, 255, 255, 0.8);
    border-color: var(--brand-gold);
}

[data-theme="dark"] .testimonial-content h4 {
    color: var(--brand-gold);
}

[data-theme="dark"] .testimonial-avatar.purple-bg {
    border-color: var(--brand-gold);
    background: var(--brand-purple);
}

[data-theme="dark"] .testimonial-avatar.gold-bg {
    border-color: var(--brand-gold);
    background: var(--brand-gold);
}

[data-theme="dark"] .testimonial-role {
    color: var(--brand-gold);
}

[data-theme="dark"] .testimonial-rating {
    color: var(--brand-gold);
}

[data-theme="dark"] .testimonial-card.enhanced p {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Section Backgrounds: Light &amp; Dark Mode --- */
[data-theme="dark"] .ambassador-benefits-section,
[data-theme="dark"] #commission-calculator.section,
[data-theme="dark"] .how-it-works-section,
[data-theme="dark"] .faq-section {
    background: var(--bg-section) !important;
}

[data-theme^="dark"] .ambassador-benefits-section {
    background: radial-gradient(circle at center, #1a1a3a 0%, #0f0f27 100%);
}

[data-theme^="dark"] #commission-calculator.section {
    background: linear-gradient(135deg, var(--bg-section) 0%, #0c0c23 100%);
}

[data-theme^="dark"] .how-it-works-section {
    background: radial-gradient(circle at center, #1a1a2e 0%, #0f0f27 100%);
}

[data-theme^="dark"] .ambassador-testimonials-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, #0c0c23 100%);
}

[data-theme^="dark"] .cta-section {
    background: linear-gradient(135deg, #000000 0%, rgb(64 0 255 / 50%) 300%);
}

[data-theme^="dark"] .partners-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, #0c0c23 100%);
}</pre></body></html>