/**
 * Sales Professional Partner Template
 * Business-orientiertes Design mit Purple Akzent
 */

:root {
    --sp-primary: #7c3aed;
    --sp-primary-dark: #6d28d9;
    --sp-bg: #ffffff;
    --sp-bg-light: #f9fafb;
    --sp-text: #1f2937;
    --sp-text-light: #6b7280;
    --sp-border: #e5e7eb;
}

/* Base Styles */
.sales-professional-template {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sales-professional-template .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.sales-professional-template .container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

.sales-professional-template .section {
    padding: 80px 0;
}

.sales-professional-template .section:nth-child(even) {
    background: var(--bg-color);
}

.sales-professional-template .section-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 48px 0;
    text-align: center;
    color: var(--secondary-color);
}

/* AOS Animations */
.sales-professional-template [data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sales-professional-template [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.sales-professional-template .sales-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-bg-color);
    overflow: hidden;
}

.sales-professional-template .hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sales-professional-template .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-bg-color);
    opacity: 0.9;
    z-index: 1;
}

.sales-professional-template .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 40px;
    max-width: 900px;
}

.sales-professional-template .hero-logo {
    margin-bottom: 32px;
}

.sales-professional-template .hero-logo img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.sales-professional-template .hero-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 24px 0;
    color: var(--hero-text-color);
    line-height: 1.1;
}

.sales-professional-template .hero-subtitle {
    font-size: 20px;
    color: var(--hero-text-color);
    opacity: 0.9;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.sales-professional-template .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--hero-button-bg);
    color: var(--hero-button-text);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--hero-button-bg);
    transition: all 0.3s ease;
}

.sales-professional-template .hero-cta:hover {
    background: transparent;
    color: var(--hero-button-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sales-professional-template .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.sales-professional-template .stat-box {
    text-align: center;
}

.sales-professional-template .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.sales-professional-template .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.sales-professional-template .about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Media Section (Video & Audio) */
.sales-professional-template .media-section {
    background: var(--bg-color);
}

.sales-professional-template .media-block {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.sales-professional-template .media-block:last-child {
    margin-bottom: 0;
}

.sales-professional-template .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.sales-professional-template .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.sales-professional-template .audio-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: var(--primary-color);
    text-align: center;
}

.sales-professional-template .audio-player {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.sales-professional-template .audio-player audio {
    width: 100%;
    outline: none;
}

.sales-professional-template .audio-player audio::-webkit-media-controls-panel {
    background: white;
}

.sales-professional-template .audio-player audio::-webkit-media-controls-play-button,
.sales-professional-template .audio-player audio::-webkit-media-controls-current-time-display,
.sales-professional-template .audio-player audio::-webkit-media-controls-time-remaining-display {
    color: var(--primary-color);
}

.sales-professional-template .audio-player audio::-webkit-media-controls-timeline {
    background: #e5e7eb;
    border-radius: 4px;
}

/* Services Grid */
.sales-professional-template .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.sales-professional-template .service-card {
    background: var(--bg-color);
    border: 1px solid var(--sp-border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.sales-professional-template .service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
    transform: translateY(-4px);
}

.sales-professional-template .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.sales-professional-template .service-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--secondary-color);
}

.sales-professional-template .service-description {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.sales-professional-template .service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Team Grid */
.sales-professional-template .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.sales-professional-template .team-card {
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sales-professional-template .team-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.sales-professional-template .team-image {
    aspect-ratio: 1;
    overflow: hidden;
    max-width: 400px;
    max-height: 400px;
    border-radius: 12px;
    margin: 24px 24px 0 24px;
}

.sales-professional-template .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sales-professional-template .team-card:hover .team-image img {
    transform: scale(1.05);
}

.sales-professional-template .team-info {
    padding: 24px;
}

.sales-professional-template .team-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--secondary-color);
}

.sales-professional-template .team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 12px 0;
}

.sales-professional-template .team-bio {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Grid */
.sales-professional-template .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.sales-professional-template .testimonial-card {
    background: var(--bg-color);
    border: 1px solid var(--sp-border);
    border-radius: 12px;
    padding: 32px;
}

.sales-professional-template .testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 0 24px 0;
    font-style: italic;
}

.sales-professional-template .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sales-professional-template .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.sales-professional-template .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-professional-template .author-info strong {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
}

.sales-professional-template .author-info span {
    color: var(--secondary-color);
    opacity: 0.8;
    font-size: 14px;
}

/* Trust Badges */
.sales-professional-template .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 48px;
}

.sales-professional-template .trust-item {
    text-align: center;
}

.sales-professional-template .trust-item img {
    max-width: 150px;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.sales-professional-template .trust-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* Contact Section */
.sales-professional-template .contact-section {
    background: var(--primary-color);
    color: var(--button-text-color);
}

.sales-professional-template .contact-content h2 {
    font-size: 42px;
    color: var(--button-text-color);
    margin: 0 0 16px 0;
    text-align: center;
}

.sales-professional-template .contact-content > p {
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 48px 0;
}

.sales-professional-template .contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.sales-professional-template .contact-method {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.sales-professional-template .contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.sales-professional-template .method-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.sales-professional-template .method-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.sales-professional-template .method-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .sales-professional-template .hero-title {
        font-size: 36px;
    }
    
    .sales-professional-template .section-title {
        font-size: 32px;
    }
    
    .sales-professional-template .services-grid,
    .sales-professional-template .team-grid,
    .sales-professional-template .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
