/* ==========================================
   papAIa Prompt Shop - Matching Brand Styles
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Quicksand:wght@500;600;700&display=swap');

:root {
    /* papAIa Brand Colors */
    --primary: #002329;
    --primary-dark: #001a1f;
    --primary-light: #0a2e2a;
    --secondary: #002329;
    --accent: #ff775b;
    --accent-hover: #ff5a3a;
    --success: #b2df7a;
    --success-dark: #9acc5f;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Neutrals */
    --gray-50: #f5f5f5;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;

    /* papAIa Gradient */
    --gradient: linear-gradient(135deg, #002329 0%, #0a2e2a 50%, #ff775b 100%);
    --gradient-accent: linear-gradient(135deg, #ff775b 0%, #ff9a85 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-accent: 0 0 40px rgba(255, 119, 91, 0.3);

    --radius: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Quicksand', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(255, 119, 91, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--accent);
}

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

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-links .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

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

/* Social Proof */
.social-proof {
    padding: 40px 0;
    background: var(--gray-50);
    text-align: center;
}

.social-proof p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos span {
    color: var(--gray-400);
    font-weight: 600;
    font-size: 1rem;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
}

.problem-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.problem-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.problem-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

.problem-card p {
    color: var(--gray-600);
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.solution-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.solution-section h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.solution-section p {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.solution-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-200);
}

.check {
    color: var(--success);
    font-weight: bold;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.products-section h2 {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-card.featured {
    border: 2px solid var(--accent);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.product-card h3 {
    margin-bottom: 12px;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: "✓ ";
    color: var(--success);
    font-weight: bold;
}

.product-price {
    margin-bottom: 20px;
}

.product-count {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 16px;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 1.25rem;
    margin-right: 12px;
}

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

.product-card .btn {
    width: 100%;
}

/* Ultimate Bundle */
.ultimate-bundle {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ultimate-bundle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.bundle-content {
    position: relative;
    z-index: 1;
}

.bundle-badge {
    display: inline-block;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.ultimate-bundle h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.ultimate-bundle p {
    opacity: 0.9;
    margin-bottom: 32px;
}

.bundle-includes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.bundle-includes span {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.bundle-price {
    margin-bottom: 32px;
}

.bundle-price .price-old {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

.bundle-price .price-new {
    color: var(--white);
    font-size: 3rem;
}

.savings {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    color: var(--success);
}

.ultimate-bundle .btn-primary {
    background: var(--accent);
    color: var(--white);
}

.ultimate-bundle .btn-primary:hover {
    background: var(--accent-hover);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 32px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray-600);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.faq-item p {
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary);
    text-align: center;
}

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

.cta-section p {
    color: var(--gray-400);
    margin-bottom: 40px;
}

.cta-guarantee {
    margin-top: 24px;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Lead Magnet Section */
.lead-magnet-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.lead-magnet-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.lead-magnet-badge {
    display: inline-block;
    background: var(--success);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lead-magnet-content h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.lead-magnet-content > p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.lead-magnet-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.lead-magnet-list li {
    padding: 12px 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

.lead-magnet-list li::before {
    content: "🎁";
}

.lead-magnet-list li:last-child {
    border-bottom: none;
}

.lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-magnet-form input[type="email"] {
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.lead-magnet-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.lead-magnet-form .btn {
    width: 100%;
}

.form-note {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.form-note a {
    color: var(--accent);
}

/* Form Success State */
.lead-magnet-form.success {
    display: none;
}

.form-success-message {
    display: none;
    padding: 24px;
    background: var(--success);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 600;
}

.form-success-message.show {
    display: block;
}

/* Brevo Form Container */
.brevo-form-container {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
}

.brevo-form-container iframe {
    width: 100%;
    max-width: 540px;
    min-height: 500px;
    height: auto;
    border: none;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .brevo-form-container iframe {
        min-height: 550px; /* Etwas mehr Höhe für Mobile */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .solution-features {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ultimate-bundle {
        padding: 40px 24px;
    }
}
