/* ================================
   PREISE.CSS – SpeedXService
   Passend zu style.css & contact.css
   Akzentfarbe: #0f79c6
================================ */

/* ================================
   HERO
================================ */
.price-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.price-hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0f79c6;
    margin-bottom: 4px;
}

.price-hero-eyebrow::before,
.price-hero-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #0f79c6;
    opacity: 0.45;
}

.price-hero h1 {
    font-size: 2.2em;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0A0A0A;
    margin: 0;
    line-height: 1.15;
}

.price-hero p {
    font-size: 1em;
    color: #6B7280;
    max-width: 480px;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

.price-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-hero-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
    border: 1px solid #E4E6EA;
    display: block;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.price-hero-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,121,198,0.12);
}

/* ================================
   SECTIONS
================================ */
.price-section {
    padding: 72px 20px;
    text-align: center;
}

.price-section.grey {
    background: #F5F6F8;
    border-top: 1px solid #E4E6EA;
    border-bottom: 1px solid #E4E6EA;
}

.price-section h2 {
    font-size: 1.9em;
    font-weight: 600;
    color: #0A0A0A;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

/* Section-Eyebrow passend zum Rest */
.price-section .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0f79c6;
    margin-bottom: 12px;
}

.price-section .section-eyebrow::before,
.price-section .section-eyebrow::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: #0f79c6;
    opacity: 0.45;
}

/* ================================
   GRID
================================ */
.price-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

/* ================================
   CARD
================================ */
.price-card {
    background: #fff;
    border: 1px solid #E4E6EA;
    border-radius: 10px;
    padding: 26px;
    text-align: left;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    opacity: 0;
    transform: translateY(16px);
}

.price-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease,
                border-color 0.22s ease, box-shadow 0.22s ease;
}

.price-card:hover {
    border-color: #0f79c6;
    box-shadow: 0 8px 28px rgba(15,121,198,0.09);
    transform: translateY(-3px);
}

/* ================================
   CARD TITEL + ICON
================================ */
.price-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    font-weight: 600;
    color: #0A0A0A;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F1F3;
}

.price-card .icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(15,121,198,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f79c6;
    flex-shrink: 0;
}

.price-card .icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ================================
   PREIS-BADGE
================================ */
.price-card .price {
    display: inline-flex;
    align-items: center;
    font-size: 1em;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(15,121,198,0.08);
    color: #0f79c6;
    margin-bottom: 14px;
    border: none;
}

/* ================================
   LISTE
================================ */
.price-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-card li {
    font-size: 0.88em;
    color: #374151;
    font-weight: 400;
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}

.price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0f79c6;
    font-size: 0.85em;
    font-weight: 600;
}

/* ================================
   CTA
================================ */
.cta {
    background: #0A0A0A;
    color: #fff;
    text-align: center;
    padding: 72px 20px;
}

.cta h2 {
    font-size: 1.9em;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.cta p {
    color: rgba(255,255,255,0.65);
    font-size: 1em;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Button auf Preisseite */
.price-hero .btn,
.cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 6px;
    border: 1px solid #0f79c6;
    background: #fff;
    color: #0f79c6;
    font-size: 0.92em;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.price-hero .btn:hover,
.cta .btn:hover {
    background: #0f79c6;
    color: #fff;
    transform: translateY(-2px);
}

.price-hero .btn:active,
.cta .btn:active {
    transform: translateY(0);
}

/* ================================
   SCROLL-REVEAL ANIMATION
================================ */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 850px) {
    .price-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 56px 20px 40px;
        gap: 36px;
    }

    .price-hero-content { align-items: center; }

    .price-hero-image img { max-width: 320px; }

    .price-section { padding: 52px 20px; }
}

@media (max-width: 600px) {
    .price-hero { padding: 48px 16px 32px; }

    .price-hero h1 { font-size: 1.7em; }

    .price-section { padding: 48px 16px; }

    .cta { padding: 52px 16px; }
    .cta h2 { font-size: 1.6em; }
}

@media (prefers-reduced-motion: reduce) {
    .price-card,
    .price-card.visible,
    .reveal,
    .reveal.visible,
    .price-hero-image img {
        transition: none;
        animation: none;
        opacity: 1;
        transform: none;
    }
}