.cta-section{
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
}

.divider-line {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #ffb326 50%, transparent 100%);
    opacity: 0.6;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cta-buttons {
        grid-template-columns: 1fr;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cta-button:hover{
    text-decoration: none;
}

.cta-button.cta-rent {
    border-color: #ffb326;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
    box-shadow: 0 4px 25px rgba(255, 179, 38, 0.2);
    position: relative;
}

.cta-button.cta-rent::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffb326;
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button.cta-rent:hover {
    background: linear-gradient(135deg, #ffb326 0%, #ff9500 100%);
    color: #0a0a0a;
    border-color: #ffb326;
    box-shadow: 0 12px 50px rgba(255, 179, 38, 0.5);
    transform: translateY(-10px) scale(1.02);
}

.cta-button.cta-rent:hover .cta-icon {
    color: #0a0a0a;
}

.cta-button.cta-rent:hover h3 {
    color: #0a0a0a;
}

.cta-button.cta-rent:hover .price-main {
    color: #0a0a0a;
}

.cta-button.cta-rent:hover .price-sub {
    color: rgba(10, 10, 10, 0.7);
}

.cta-button.cta-rent:hover p {
    color: #0a0a0a;
}

.cta-button.cta-rent:hover .cta-icon svg {
    filter: drop-shadow(0 0 4px rgba(10, 10, 10, 0.3));
}

.cta-button.cta-buy {
    opacity: 0.85;
}
.cta-button.cta-buy h3{
    color: white;
}

.cta-button.cta-buy:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
    border-color: #ffb326;
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 179, 38, 0.4);
}

.cta-button.cta-buy:hover .cta-icon {
    color: #ffb326;
}

.cta-button.cta-buy:hover h3 {
    color: #ffffff;
}

.cta-button.cta-buy:hover .price-main {
    color: #ffb326;
}

.cta-button.cta-buy:hover p {
    color: #b0b0b0;
}

.cta-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon svg {
    transform: scale(1.1);
}

.cta-button.cta-rent .cta-icon {
    width: 64px;
    height: 64px;
    color: #ffb326;
}

.cta-button.cta-rent .cta-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 179, 38, 0.5));
}

.cta-button h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-button.cta-rent h3 {
    font-size: 2rem;
    color: #ffb326;
}

.cta-price {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: #ffb326;
    line-height: 1.2;
}

.price-sub {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 400;
}

.cta-button p {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
}
