/* ============================================ */
/* SPORT TEMPLATE CSS                          */
/* Farbvariable --sport-primary wird pro        */
/* Sportart in der HTML überschrieben           */
/* ============================================ */

/* ---- HERO SECTION ---- */
.sport-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sport-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sport-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sport-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.92) 0%,
        rgba(10, 10, 15, 0.7) 40%,
        rgba(var(--sport-primary-rgb), 0.15) 100%
    );
}

/* Dark gradient fade at bottom of hero for seamless transition */
.sport-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0) 0%,
        rgba(10, 10, 15, 0.4) 40%,
        rgba(10, 10, 15, 0.85) 75%,
        rgba(10, 10, 15, 1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.sport-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 120px;
}

.sport-hero-inner {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.sport-hero-text {
    max-width: 720px;
}

.sport-hero-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport-hero-product .product-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.sport-hero-product .showcase-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 5;
}

.sport-hero-product .main-product-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 30px 60px rgba(var(--sport-primary-rgb), 0.3));
    animation: floatMain 18s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -5s;
}

.sport-hero-product .product-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 2px solid rgba(var(--sport-primary-rgb), 0.2);
    border-radius: 50%;
    animation: ringPulse 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.sport-hero-product .product-ring.ring-2 {
    width: 130%;
    height: 130%;
    border-color: rgba(var(--sport-primary-rgb), 0.1);
    animation-delay: -6s;
}

.sport-hero-product .showcase-float {
    position: absolute;
    z-index: 10;
}

.sport-hero-product .showcase-float img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(var(--sport-primary-rgb), 0.4));
}

.sport-hero-product .float-camera {
    top: 5%;
    right: 0;
    width: 120px;
    animation: floatCamera2 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -3s;
}

.sport-hero-product .float-tripod {
    bottom: 10%;
    left: 0;
    width: 150px;
    animation: floatTripod2 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -7s;
}

.sport-hero-product .showcase-badge {
    position: absolute;
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(var(--sport-primary-rgb), 0.3);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
    z-index: 20;
    animation: badgeFloat 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.sport-hero-product .badge-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--sport-primary);
}

.sport-hero-product .badge-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sport-hero-product .badge-cameras {
    top: 15%;
    left: 10%;
    animation-delay: -2s;
}

.sport-hero-product .badge-fps {
    top: 40%;
    right: 0;
    animation-delay: -5s;
}

.sport-hero-product .badge-eu {
    bottom: 20%;
    right: 10%;
    animation-delay: -8s;
}

.sport-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--sport-primary);
    color: var(--sport-primary);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 28px;
    background: rgba(var(--sport-primary-rgb), 0.08);
}

.sport-hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sport-accent {
    color: var(--sport-primary);
}

.sport-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

.sport-hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

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

.sport-stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--sport-primary);
    line-height: 1;
}

.sport-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.sport-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sport-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

.sport-hero-scroll svg {
    width: 20px;
    height: 20px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- BUTTONS ---- */
.btn-sport-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--sport-primary);
    color: #0a0a0f;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-sport-primary:hover {
    background: #fff;
    color: #0a0a0f;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(var(--sport-primary-rgb), 0.3);
}

.btn-sport-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

.btn-sport-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-sport-secondary:hover {
    border-color: var(--sport-primary);
    color: var(--sport-primary);
    background: rgba(var(--sport-primary-rgb), 0.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.95rem;
}

/* ---- SECTION HEADERS ---- */
.sport-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.sport-tag {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(var(--sport-primary-rgb), 0.3);
    color: var(--sport-primary);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    background: rgba(var(--sport-primary-rgb), 0.05);
}

.sport-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 16px;
}

.sport-section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ---- PROBLEM SECTION ---- */
.sport-problem {
    padding: 120px 0;
    background: #0a0a0f;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(var(--sport-primary-rgb), 0.2);
    background: rgba(var(--sport-primary-rgb), 0.03);
    transform: translateY(-4px);
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--sport-primary-rgb), 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--sport-primary);
}

.problem-icon svg {
    width: 28px;
    height: 28px;
}

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.problem-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ---- USE CASES SECTION ---- */
.sport-usecases {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0d14 100%);
}

.usecase-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.usecase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.usecase-item.usecase-reverse {
    direction: rtl;
}

.usecase-item.usecase-reverse > * {
    direction: ltr;
}

.usecase-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.usecase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(var(--sport-primary-rgb), 0.15);
    border-radius: 16px;
    pointer-events: none;
}

.usecase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.usecase-item:hover .usecase-image img {
    transform: scale(1.03);
}

.usecase-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(var(--sport-primary-rgb), 0.2);
    line-height: 1;
    margin-bottom: 12px;
}

.usecase-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.usecase-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.usecase-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.usecase-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.usecase-benefits li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--sport-primary-rgb), 0.12);
    color: var(--sport-primary);
    border-radius: 6px;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ---- TECHNOLOGY SECTION ---- */
.sport-technology {
    padding: 120px 0;
    background: #0a0a0f;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tech-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: rgba(var(--sport-primary-rgb), 0.25);
    transform: translateY(-4px);
}

.tech-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--sport-primary-rgb), 0.08);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--sport-primary);
}

.tech-icon svg {
    width: 26px;
    height: 26px;
}

.tech-card h3 {
    font-size: 1.05rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

/* ---- KOMPLETT-SET SECTION ---- */
.sport-completeset {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d0d14 0%, #0a0a0f 100%);
}

.completeset-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.completeset-image {
    position: relative;
    text-align: center;
}

.completeset-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(var(--sport-primary-rgb), 0.15));
}

.completeset-image .symbol-caption {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.completeset-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.completeset-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.completeset-item:hover {
    border-color: rgba(var(--sport-primary-rgb), 0.2);
    background: rgba(var(--sport-primary-rgb), 0.03);
}

.completeset-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--sport-primary-rgb), 0.12);
    border-radius: 8px;
    color: var(--sport-primary);
    margin-top: 2px;
}

.completeset-check svg {
    width: 16px;
    height: 16px;
}

.completeset-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.completeset-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- PRICING SECTION ---- */
.sport-pricing {
    padding: 120px 0;
    background: #0a0a0f;
}

.sport-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.sport-price-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.sport-price-card:hover {
    border-color: rgba(var(--sport-primary-rgb), 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(var(--sport-primary-rgb), 0.1),
        inset 0 1px 0 rgba(var(--sport-primary-rgb), 0.15);
    background: rgba(var(--sport-primary-rgb), 0.04);
}

.sport-price-card:hover .sport-price-badge {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(var(--sport-primary-rgb), 0.4);
}

.sport-price-card:hover .sport-price-value {
    color: var(--sport-primary);
    text-shadow: 0 0 20px rgba(var(--sport-primary-rgb), 0.3);
}

/* Bounce-Effekt für Buttons */
@keyframes bounce-hover {
    0% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
    50% { transform: translateY(-2px); }
    70% { transform: translateY(-4px); }
    100% { transform: translateY(-2px); }
}

.btn-sport-primary:hover,
.sport-price-card .btn-full:hover {
    animation: bounce-hover 0.5s ease forwards;
    box-shadow: 0 8px 30px rgba(var(--sport-primary-rgb), 0.3);
}

.btn-sport-secondary:hover {
    animation: bounce-hover 0.5s ease forwards;
}

.sport-price-featured {
    border-color: var(--sport-primary);
    background: rgba(var(--sport-primary-rgb), 0.04);
}

.sport-price-featured:hover {
    border-color: var(--sport-primary);
    background: rgba(var(--sport-primary-rgb), 0.08);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(var(--sport-primary-rgb), 0.15),
        inset 0 1px 0 rgba(var(--sport-primary-rgb), 0.2);
}

.sport-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--sport-primary);
    color: #0a0a0f;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    white-space: nowrap;
}

.sport-price-header {
    margin-bottom: 24px;
}

.sport-price-header h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sport-price-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.sport-price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sport-price-currency {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sport-primary);
}

.sport-price-value {
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

.sport-price-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 4px;
}

.sport-price-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.sport-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.sport-price-features li::before {
    content: '✓';
    color: var(--sport-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.sport-price-features li svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: var(--sport-primary);
    flex-shrink: 0;
}

.sport-price-software {
    padding: 16px;
    background: rgba(var(--sport-primary-rgb), 0.06);
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.sport-price-software span {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.sport-price-vat {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
    margin-top: 4px;
}

.sport-price-shipping {
    text-align: center;
    margin-top: 12px;
}

.sport-price-shipping a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}

.sport-price-shipping a:hover {
    color: var(--sport-primary);
}

.sport-pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- PRICING TOGGLE ---- */
.sport-pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sport-toggle-btn {
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.sport-toggle-btn.active {
    background: var(--sport-primary);
    color: #0a0a0f;
    box-shadow: 0 4px 20px rgba(var(--sport-primary-rgb), 0.3);
}

.sport-toggle-btn:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.sport-pricing-grid.hidden {
    display: none;
}

/* ---- PRICING BREAKDOWN ---- */
.sport-price-breakdown {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sport-price-breakdown .breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.sport-price-breakdown .breakdown-row + .breakdown-row {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.sport-price-setup {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 12px;
}

/* ---- TESTIMONIALS SECTION ---- */
.sport-testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0d14 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sport-testimonial-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.sport-testimonial-card:hover {
    border-color: rgba(var(--sport-primary-rgb), 0.2);
}

.sport-testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--sport-primary);
    margin-bottom: 20px;
}

.sport-testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.sport-testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.sport-testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- FAQ SECTION ---- */
.sport-faq {
    padding: 120px 0;
    background: #0a0a0f;
}

.sport-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sport-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sport-faq-item:hover,
.sport-faq-item.active {
    border-color: rgba(var(--sport-primary-rgb), 0.2);
}

.sport-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.sport-faq-question:hover {
    background: rgba(var(--sport-primary-rgb), 0.03);
}

.sport-faq-chevron {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--sport-primary);
    transition: transform 0.3s ease;
}

.sport-faq-item.active .sport-faq-chevron {
    transform: rotate(180deg);
}

.sport-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.sport-faq-item.active .sport-faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

.sport-faq-answer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ---- FINAL CTA SECTION ---- */
.sport-final-cta {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        rgba(var(--sport-primary-rgb), 0.08) 0%,
        #0a0a0f 50%,
        rgba(var(--sport-primary-rgb), 0.05) 100%
    );
    position: relative;
    overflow: hidden;
}

.sport-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--sport-primary-rgb), 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.sport-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sport-cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 20px;
}

.sport-cta-inner > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

.sport-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sport-cta-trust {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .sport-hero-inner {
        grid-template-columns: 1fr;
    }
    
    .sport-hero-product {
        display: none;
    }
    
    .sport-hero-text {
        max-width: 100%;
    }
    
    .problem-grid,
    .tech-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .usecase-item,
    .usecase-item.usecase-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }
    
    .completeset-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .completeset-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .sport-hero-stats {
        gap: 32px;
    }
    
    .sport-stat-number {
        font-size: 2rem;
    }
    
    .problem-grid,
    .tech-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .sport-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sport-hero-cta {
        flex-direction: column;
    }
    
    .sport-hero-cta .btn-sport-primary,
    .sport-hero-cta .btn-sport-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .sport-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sport-cta-buttons .btn-sport-primary,
    .sport-cta-buttons .btn-sport-secondary {
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }
    
    .usecase-image img {
        height: 280px;
    }
    
    .sport-hero-scroll {
        display: none;
    }
    
    section {
        padding: 80px 0;
    }
    
    .sport-problem,
    .sport-usecases,
    .sport-technology,
    .sport-completeset,
    .sport-pricing,
    .sport-testimonials,
    .sport-faq,
    .sport-final-cta {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .sport-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .sport-hero-badge {
        font-size: 0.7rem;
    }
    
    .sport-price-card {
        padding: 32px 24px;
    }
}

/* Two-column pricing grid for sport pages */
.sport-pricing-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.sport-price-setup {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

/* ---- KOMPONENTEN CAROUSEL SECTION ---- */
.sport-carousel {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0d14 50%, #0a0a0f 100%);
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    margin-top: 48px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    box-sizing: border-box;
}

.carousel-slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    min-height: 350px;
}

.carousel-slide-image img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s ease;
}

.carousel-slide:hover .carousel-slide-image img {
    transform: scale(1.03);
}

.carousel-slide-content {
    padding: 16px 0;
}

.carousel-slide-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sport-primary);
    opacity: 0.6;
    margin-bottom: 12px;
}

.carousel-slide-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
}

.carousel-slide-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.carousel-slide-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.carousel-spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(var(--sport-primary-rgb), 0.08);
    border: 1px solid rgba(var(--sport-primary-rgb), 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--sport-primary);
}

.carousel-spec-tag svg {
    width: 14px;
    height: 14px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(var(--sport-primary-rgb), 0.15);
    border-color: var(--sport-primary);
    color: var(--sport-primary);
}

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

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--sport-primary);
    width: 28px;
    border-radius: 5px;
}

/* Carousel counter */
.carousel-counter {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
}

.carousel-counter .current {
    color: var(--sport-primary);
    font-weight: 500;
}

/* Carousel Responsive */
@media (max-width: 1024px) {
    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    
    .carousel-slide-image {
        min-height: 250px;
    }
    
    .carousel-slide-image img {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .sport-carousel {
        padding: 80px 0;
    }
    
    .carousel-slide {
        padding: 24px;
    }
    
    .carousel-slide-image {
        min-height: 200px;
    }
    
    .carousel-slide-image img {
        max-height: 220px;
    }
    
    .carousel-slide-title {
        font-size: 1.4rem;
    }
    
    .carousel-slide-desc {
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* ============================================ */
/* VIDEO SHOWCASE SECTION                       */
/* ============================================ */
.video-showcase-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #0a0a0f;
}
.video-showcase-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.video-showcase {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.video-showcase-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(var(--sport-primary-rgb, 0, 229, 255), 0.02);
}
.video-showcase-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(var(--sport-primary-rgb, 0, 229, 255), 0.6), rgba(var(--sport-primary-rgb, 0, 229, 255), 0.1) 40%, rgba(var(--sport-primary-rgb, 0, 229, 255), 0.05) 60%, rgba(var(--sport-primary-rgb, 0, 229, 255), 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
.video-showcase-inner::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 30px;
    background: radial-gradient(ellipse at center, rgba(var(--sport-primary-rgb, 0, 229, 255), 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.video-showcase-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.video-showcase-label span {
    font-size: 0.75rem;
    color: var(--sport-primary, #00e5ff);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}
.video-showcase-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--sport-primary, #00e5ff), transparent);
}
.video-showcase-title {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.4;
}
.video-showcase-title strong {
    color: var(--sport-primary, #00e5ff);
    font-weight: 600;
}
.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    z-index: 1;
    box-shadow: 0 0 40px rgba(var(--sport-primary-rgb, 0, 229, 255), 0.1), 0 20px 60px rgba(0, 0, 0, 0.4);
}
.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 18px;
}
.video-showcase-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 18px;
    background: rgba(var(--sport-primary-rgb, 0, 229, 255), 0.04);
    border: 1px solid rgba(var(--sport-primary-rgb, 0, 229, 255), 0.1);
    border-radius: 12px;
}
.video-showcase-caption svg {
    width: 16px;
    height: 16px;
    color: var(--sport-primary, #00e5ff);
    flex-shrink: 0;
}
.video-showcase-caption p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
@keyframes laserScan {
    0% { top: -2px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% + 2px); opacity: 0; }
}
.video-showcase-inner .laser-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sport-primary, #00e5ff) 20%, var(--sport-primary, #00e5ff) 50%, var(--sport-primary, #00e5ff) 80%, transparent);
    box-shadow: 0 0 15px rgba(var(--sport-primary-rgb, 0, 229, 255), 0.6), 0 0 30px rgba(var(--sport-primary-rgb, 0, 229, 255), 0.3);
    z-index: 3;
    animation: laserScan 4s ease-in-out infinite;
    pointer-events: none;
    border-radius: 1px;
}
.video-showcase-inner .corner-bracket {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
    pointer-events: none;
}
.video-showcase-inner .corner-bracket::before,
.video-showcase-inner .corner-bracket::after {
    content: '';
    position: absolute;
    background: var(--sport-primary, #00e5ff);
}
.video-showcase-inner .corner-bracket::before {
    width: 20px;
    height: 2px;
}
.video-showcase-inner .corner-bracket::after {
    width: 2px;
    height: 20px;
}
.corner-bracket.top-left { top: 8px; left: 8px; }
.corner-bracket.top-left::before { top: 0; left: 0; }
.corner-bracket.top-left::after { top: 0; left: 0; }
.corner-bracket.top-right { top: 8px; right: 8px; }
.corner-bracket.top-right::before { top: 0; right: 0; }
.corner-bracket.top-right::after { top: 0; right: 0; }
.corner-bracket.bottom-left { bottom: 8px; left: 8px; }
.corner-bracket.bottom-left::before { bottom: 0; left: 0; }
.corner-bracket.bottom-left::after { bottom: 0; left: 0; }
.corner-bracket.bottom-right { bottom: 8px; right: 8px; }
.corner-bracket.bottom-right::before { bottom: 0; right: 0; }
.corner-bracket.bottom-right::after { bottom: 0; right: 0; }
@media (max-width: 768px) {
    .video-showcase-section {
        padding: 60px 0;
    }
    .video-showcase-title {
        font-size: 1.1rem;
    }
}
