/* ============================================================
   PFOTENDEALS - Complete Stylesheet
   ============================================================ */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --primary-light: #f39c12;
    --secondary: #2c3e50;
    --accent: #27ae60;
    --dark: #1a1a2e;
    --text: #2d3436;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #636e72;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--dark);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-header p {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.5);
}

.btn-large {
    padding: 20px 44px;
    font-size: 1.2rem;
}

.btn-mega {
    padding: 22px 48px;
    font-size: 1.3rem;
    width: 100%;
    justify-content: center;
    border-radius: 60px;
}

.btn-header {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-header:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ============================================================
   WIDERRUF BUTTON - EXTRA AUFFÄLLIG (ORANGE MIT PULS)
   ============================================================ */

.btn-withdrawal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f39c12;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #f1c40f;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.5);
    animation: glow-pulse 2s ease-in-out infinite;
}

.btn-withdrawal:hover {
    background: #e67e22;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(243, 156, 18, 0.6);
    border-color: #f39c12;
}

.btn-withdrawal i {
    font-size: 1.1rem;
    color: var(--white);
}

.btn-withdrawal:hover i {
    color: var(--white);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4);
    }
    50% {
        box-shadow: 0 6px 35px rgba(243, 156, 18, 0.7);
    }
}

.btn-withdrawal-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
}

.btn-withdrawal-sm:hover {
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.5);
}

/* ---------- HEADER ---------- */
.header {
    background: var(--white);
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fef9f0 0%, #fff8ee 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge {
    display: inline-block;
    background: rgba(230, 126, 34, 0.12);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 8px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 8px 0;
}

.price-old {
    font-size: 1.6rem;
    color: var(--gray);
    text-decoration: line-through;
}

.price-new {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-dark);
}

.price-save {
    background: #e74c3c;
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--gray);
}

.trust-badges i {
    color: var(--accent);
    margin-right: 6px;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
    animation: float 4s ease-in-out infinite;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ---------- SOCIAL PROOF ---------- */
.social-proof-bar {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid #f0f0f0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ---------- PROBLEM SECTION ---------- */
.problem-section {
    padding: 80px 0;
    background: var(--light);
}

.problem-section h2 {
    margin-bottom: 40px;
}

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

.problem-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.problem-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 16px;
}

.problem-card h3 {
    margin-bottom: 10px;
}

/* ---------- FEATURES ---------- */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--light);
    padding: 40px 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(230, 126, 34, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #fff8ee 100%);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
}

/* ---------- COMPARISON ---------- */
.comparison-section {
    padding: 80px 0;
    background: var(--white);
}

.comparison-section h2 {
    margin-bottom: 40px;
}

.comparison {
    display: flex;
    align-items: stretch;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.comparison-card.before {
    background: #fdf2f2;
    border-left: 6px solid #e74c3c;
}

.comparison-card.after {
    background: #f0faf4;
    border-left: 6px solid var(--accent);
}

.comparison-label {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.comparison-card.before .comparison-label {
    color: #e74c3c;
}

.comparison-card.after .comparison-label {
    color: var(--accent);
}

.comparison-card i {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.comparison-card.before i {
    color: #e74c3c;
}

.comparison-card.after i {
    color: var(--accent);
}

.comparison-card ul {
    list-style: none;
    text-align: left;
}

.comparison-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-card ul li::before {
    content: '•';
    font-weight: 900;
    font-size: 1.2rem;
}

.comparison-card.before ul li::before {
    color: #e74c3c;
}

.comparison-card.after ul li::before {
    color: var(--accent);
}

.vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--gray);
    padding: 0 10px;
    min-width: 60px;
}

/* ---------- REVIEWS ---------- */
.reviews-section {
    padding: 80px 0;
    background: var(--light);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.2rem;
    margin-top: 8px;
}

.rating i {
    color: #f1c40f;
}

.rating span {
    color: var(--gray);
    font-weight: 400;
    font-size: 1rem;
    margin-left: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-stars i {
    color: #f1c40f;
    font-size: 0.9rem;
}

.review-date {
    color: var(--gray);
    font-size: 0.85rem;
}

.review-card h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.review-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-author {
    color: var(--gray);
    font-size: 0.9rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}

.review-author strong {
    color: var(--dark);
}

/* ---------- TRUST SECTION ---------- */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-section h2 {
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--light);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.trust-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.trust-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.trust-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   FAQ - AKTUALISIERT MIT FUNKTIONIERENDER AUFKLAPP-FUNKTION
   ============================================================ */

.faq-section {
    padding: 80px 0;
    background: var(--light);
}

.faq-section h2 {
    margin-bottom: 40px;
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f4f0;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--gray);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question h4 {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

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

.faq-answer p {
    color: #444;
    line-height: 1.8;
    font-size: 0.98rem;
    margin: 0;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.cta-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

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

.cta-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.cta-details h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.cta-features {
    list-style: none;
    margin-bottom: 20px;
}

.cta-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-features li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.cta-pricing {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: var(--radius);
    margin: 16px 0;
    text-align: center;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.original-price {
    font-size: 1.6rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
}

.discount-badge {
    background: #e74c3c;
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.final-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-top: 4px;
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.urgency-bar {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 12px 20px;
    border-radius: 50px;
    text-align: center;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.urgency-bar i {
    color: #e74c3c;
    font-size: 1.2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.stock-count {
    color: #e74c3c;
    font-weight: 900;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 12px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.cta-guarantee i {
    font-size: 2.8rem;
    color: var(--primary);
}

.cta-guarantee strong {
    font-size: 1.1rem;
}

.cta-guarantee p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #0f0f1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-section p {
    line-height: 1.7;
    max-width: 320px;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 16px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- WIDERRUF-SEITE ---------- */
.withdrawal-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #fef9f0 0%, #fff8ee 100%);
    min-height: calc(100vh - 200px);
}

.withdrawal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.withdrawal-header {
    text-align: center;
    margin-bottom: 50px;
}

.withdrawal-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 126, 34, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.8rem;
    color: var(--primary);
}

.withdrawal-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 12px;
}

.withdrawal-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.withdrawal-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.withdrawal-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.withdrawal-steps {
    list-style: none;
    padding: 0;
}

.withdrawal-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.withdrawal-steps li:last-child {
    border-bottom: none;
}

.step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.withdrawal-notice {
    display: flex;
    gap: 14px;
    background: #fef9f0;
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--primary);
}

.withdrawal-notice i {
    color: var(--primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.withdrawal-notice div {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.withdrawal-form-wrapper .form-group {
    margin-bottom: 20px;
}

.withdrawal-form-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.withdrawal-form-wrapper label i {
    color: var(--primary);
    margin-right: 8px;
}

.withdrawal-form-wrapper input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: #fafafa;
}

.withdrawal-form-wrapper input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
    background: #fff;
}

.form-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 6px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-check label {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
    cursor: pointer;
}

.form-check label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-check label a:hover {
    color: var(--primary-dark);
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-security i {
    color: var(--accent);
}

.withdrawal-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(39, 174, 96, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: var(--accent);
}

.withdrawal-success h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.withdrawal-success p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 24px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.withdrawal-terms {
    margin-top: 30px;
}

.withdrawal-terms h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

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

.term-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.term-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.term-card i {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.term-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.term-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-features li {
        justify-content: center;
    }

    .terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
        border-top: 1px solid #f0f0f0;
        margin-top: 12px;
    }
    
    .nav.open {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-price {
        justify-content: center;
    }
    
    .hero-cta .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .problems {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .comparison {
        flex-direction: column;
        align-items: center;
    }
    
    .vs-badge {
        padding: 10px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section p {
        max-width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-box {
        padding: 20px;
    }
    
    .cta-details h3 {
        font-size: 1.4rem;
    }
    
    .final-price {
        font-size: 2.4rem;
    }
    
    .btn-mega {
        font-size: 1rem;
        padding: 18px 24px;
    }

    .withdrawal-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .withdrawal-section {
        padding: 130px 0 60px;
    }

    .terms-grid {
        grid-template-columns: 1fr 1fr;
    }

    .withdrawal-form-wrapper .btn-mega {
        font-size: 1rem;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 110px 0 50px;
    }
    
    .hero-price .price-new {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .cta-pricing .final-price {
        font-size: 2rem;
    }
    
    .urgency-bar {
        flex-wrap: wrap;
        text-align: center;
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .withdrawal-box {
        padding: 20px 16px;
    }

    .withdrawal-header h1 {
        font-size: 1.8rem;
    }

    .withdrawal-subtitle {
        font-size: 1rem;
    }
}
/* ============================================================
   HERO CAROUSEL
   ============================================================ */

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-slide {
    display: none;
    width: 100%;
    animation: fadeEffect 0.8s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
}

@keyframes fadeEffect {
    0% { opacity: 0.3; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

/* --- DOTS / INDICATOR --- */
.carousel-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-dots .dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.4);
}

.carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* --- Responsive Anpassungen --- */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
    }
    
    .carousel-dots {
        bottom: 50px;
    }
    
    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .image-badge {
        top: 10px;
        right: 10px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .carousel-dots {
        bottom: 40px;
        gap: 8px;
    }
    
    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }
}
/* ============================================================
   WARENKORB / BESTELLSEITE
   ============================================================ */

.cart-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #fef9f0 0%, #fff8ee 100%);
    min-height: calc(100vh - 200px);
}

.cart-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 126, 34, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2.4rem;
    color: var(--primary);
}

.cart-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 8px;
}

.cart-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Grid Layout */
.cart-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

/* Linke Seite */
.cart-left {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

/* Produktübersicht */
.cart-product {
    display: flex;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 24px;
}

.cart-product-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f4f0;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.product-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.product-price .price-old {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.product-price .price-new {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-quantity label {
    font-weight: 600;
    font-size: 0.95rem;
}

.product-quantity select {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    background: #fafafa;
    cursor: pointer;
    transition: var(--transition);
}

.product-quantity select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Formular */
.order-form h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.order-form .form-group {
    margin-bottom: 16px;
}

.order-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--dark);
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: #fafafa;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.08);
    background: #fff;
}

.order-form textarea {
    resize: vertical;
    min-height: 80px;
}

.order-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.order-form .form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
    background: #fafafa;
}

.order-form .form-check label {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
    cursor: pointer;
}

.order-form .form-check label a {
    color: var(--primary);
    text-decoration: underline;
}

.order-form .form-check label a:hover {
    color: var(--primary-dark);
}

/* Rechte Seite */
.cart-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Bestellübersicht */
.cart-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.cart-summary h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1.2rem;
    padding-top: 12px;
}

.summary-divider {
    height: 2px;
    background: #f0f0f0;
    margin: 12px 0;
}

.summary-tax {
    text-align: right;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Zahlungsmethoden */
.payment-methods {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.payment-methods h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.payment-option {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.payment-option:last-child {
    border-bottom: none;
}

.payment-option input[type="radio"] {
    margin-right: 12px;
    accent-color: var(--primary);
    transform: scale(1.1);
    cursor: pointer;
}

.payment-option label {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-option label i {
    font-size: 1.4rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.payment-badge {
    font-weight: 400;
    font-size: 0.75rem;
    background: #f0f0f0;
    padding: 2px 12px;
    border-radius: 50px;
    color: var(--gray);
}

/* Bankdetails / PayPal Details */
.bank-details,
.paypal-details {
    background: #f8f4f0;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 12px;
}

.bank-details h4,
.paypal-details h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.bank-details p,
.paypal-details p {
    font-size: 0.9rem;
    margin: 4px 0;
    color: var(--text);
}

.bank-note {
    margin-top: 8px;
    color: var(--gray);
    font-style: italic;
}

.paypal-details i {
    color: var(--accent);
}

/* Bestellbutton */
#orderSubmit {
    width: 100%;
    margin-top: 0;
}

.cart-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray);
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cart-security i {
    color: var(--accent);
}

.cart-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.cart-guarantee i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.cart-guarantee strong {
    display: block;
    font-size: 0.95rem;
}

.cart-guarantee p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* ============================================================
   BESTELLUNG-OK SEITE
   ============================================================ */

.success-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #fef9f0 0%, #fff8ee 100%);
    min-height: calc(100vh - 200px);
}

.success-container {
    max-width: 800px;
    margin: 0 auto;
}

.success-header {
    text-align: center;
    margin-bottom: 40px;
}

.success-icon-big {
    width: 100px;
    height: 100px;
    background: rgba(39, 174, 96, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3.5rem;
    color: var(--accent);
}

.success-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 8px;
}

.success-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.success-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-details {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.success-details h3,
.success-timeline h3,
.payment-notice h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.success-details h3 i,
.success-timeline h3 i,
.payment-notice h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.success-details p {
    color: var(--gray);
    line-height: 1.7;
}

.success-timeline {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.success-timeline ul {
    list-style: none;
    padding: 0;
}

.success-timeline ul li {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    align-items: flex-start;
}

.success-timeline ul li:last-child {
    border-bottom: none;
}

.success-timeline .timeline-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.success-timeline ul li div {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.success-timeline ul li div strong {
    color: var(--dark);
}

.payment-notice {
    background: #fef9f0;
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.payment-notice p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.success-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   RESPONSIVE - WARENKORB
   ============================================================ */

@media (max-width: 1024px) {
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cart-section {
        padding: 130px 0 60px;
    }

    .cart-left {
        padding: 20px;
    }

    .cart-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cart-product-image {
        width: 150px;
        height: 150px;
    }

    .product-price {
        justify-content: center;
    }

    .product-quantity {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cart-right {
        gap: 16px;
    }

    .cart-summary,
    .payment-methods {
        padding: 20px;
    }

    .success-box {
        padding: 30px 20px;
    }

    .success-timeline ul li {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .cart-left {
        padding: 16px;
    }

    .payment-option label {
        font-size: 0.9rem;
    }

    .payment-badge {
        font-size: 0.65rem;
        padding: 1px 10px;
    }

    .success-icon-big {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
}/* ============================================================
   BANK-HINWEIS (bei Überweisung)
   ============================================================ */

.bank-info {
    background: #fef9f0;
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 12px;
    border-left: 4px solid var(--primary);
}

.bank-info h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.bank-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.bank-notice i {
    flex-shrink: 0;
    margin-top: 2px;
}

.bank-notice div strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.bank-notice div p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}