@import url(https://porn-app.com/css/fonts.css);

/* Lokales Variablen-Setup basierend auf deinem Design */
:root {
    --primary: #0365E6;
    --bg-dark: #1a1a1a;
    --bg-card: #121214;
    --text-main: #ffffff;
    --text-muted: #a1a1a6;
    --border: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    margin: 0;
    line-height: 1.6;
}

.pro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* --- HEADER AREA --- */
.pro-hero {
    text-align: center;
    padding: 60px 0;
    background: radial-gradient(circle at center, #16161a 0%, #050506 100%);
}

.pro-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0;
}

.pro-hero h1 span {
    color: var(--primary);
}

.pro-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* --- PREMIUM BENEFITS LIST --- */
.pro-benefits-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Abstand zwischen den Items */
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    padding-top: 10px;
}

.benefit-item:last-child {
    border-bottom: none; /* Letzte Linie entfernen */
}

.benefit-item:hover {
    transform: translateX(10px); /* Leichter Slide-Effekt beim Hover */
}

.benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.benefit-content strong {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.benefit-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    .benefit-item:hover {
        transform: none;
    }
}

/* Spezifisches Styling für den Sektionstitel */
.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 40px;
    letter-spacing: -1px;
    position: relative;

    /* Standard für Desktop: Linksbündig */
    text-align: left;
}

/* Goldener Akzent-Strich unter dem Titel (optional, passend zu deinem Style) */
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 10px;
    /* Auf Desktop bleibt der Strich links */
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .section-title {
        /* Auf Mobile: Zentriert */
        text-align: center;
    }

    .section-title::after {
        /* Strich auf Mobile ebenfalls zentrieren */
        margin-left: auto;
        margin-right: auto;
    }
}
/* --- PRICING SECTION (Visible but non-selectable) --- */
.price-showcase {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-showcase::before {
    content: "";
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 150px; height: 2px;
}

.price-flex {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.price-tag {
    background: #000;
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 18px;
    flex: 1;
    min-width: 160px;
    opacity: 0.9;
}

.price-tag.best-deal {
    border-color: var(--primary);
    transform: scale(1.05);
}

.price-tag .duration {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.price-tag .cost {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 5px 0;
}

.price-tag .save {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: bold;
}

/* --- TUTORIAL SECTION --- */
.tutorial-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.tutorial-step.reverse { flex-direction: row-reverse; }

.step-text { flex: 1; min-width: 300px; }
.step-image { flex: 1; min-width: 300px; text-align: center; }

.step-number {
    background: var(--primary);
    width: 35px; height: 35px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.phone-frame {
    width: 100%;
    max-width: 320px;

    aspect-ratio: 9 / 19.5;
    position: relative;
    border-radius: 32px;
    border: 4px solid #1a1a1a;
    background: #000;
    padding: 8px;

    box-shadow:
        0 0 0 1px #444,
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 2px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* --- CTA AREA --- */
.pro-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 25px;
}

.btn-large {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    margin: 10px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .tutorial-step { text-align: center; justify-content: center; }
    .price-tag.best-deal { transform: none; margin: 10px 0; }
    .price-flex { flex-direction: column; }
}
