﻿/* ============================================================
   Beamcast — Produktseite
   Alle Assets lokal, keine externen Abhängigkeiten
   ============================================================ */

/* --- Variablen & Reset --- */
:root {
    --primary:        #1A6CF4;
    --primary-dark:   #1355CC;
    --primary-light:  #EBF3FF;
    --primary-mid:    #3D82F5;
    --accent:         #FF6B35;
    --accent-light:   #FFF3EE;
    --green:          #16A34A;
    --green-light:    #F0FDF4;
    --dark:           #0F172A;
    --gray-800:       #1E293B;
    --gray-700:       #334155;
    --gray-600:       #475569;
    --gray-400:       #94A3B8;
    --gray-200:       #E2E8F0;
    --gray-100:       #F1F5F9;
    --gray-50:        #F8FAFC;
    --white:          #FFFFFF;
    --shadow-xs:      0 1px 2px rgba(15,23,42,.06);
    --shadow-sm:      0 2px 8px rgba(15,23,42,.08);
    --shadow-md:      0 4px 20px rgba(15,23,42,.10);
    --shadow-lg:      0 8px 40px rgba(15,23,42,.12);
    --shadow-xl:      0 16px 64px rgba(15,23,42,.14);
    --radius-sm:      6px;
    --radius:         10px;
    --radius-md:      14px;
    --radius-lg:      20px;
    --radius-xl:      28px;
    --max-width:      1180px;
    --font:           -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --nav-h:          68px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto; padding: 12px 20px; margin: 0; overflow: visible; clip: auto; background: var(--primary); color: white; font-size: 14px; font-weight: 600; border-radius: var(--radius-sm); z-index: 10000; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Utilities --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    display: block;
    width: 20px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 640px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-label::after {
    content: '';
    display: block;
    width: 20px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all .18s ease;
    white-space: nowrap;
    line-height: 1;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,108,244,.35);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-accent:hover {
    background: #E55B27;
    border-color: #E55B27;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,107,53,.35);
}


/* --- Extracted Inline Styles --- */
.text-center-sm {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-display {
    font-size: clamp(52px, 7vw, 72px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.price-display-sm {
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 800;
    color: var(--gray-800);
    line-height: 1;
}
.price-note {
    font-size: 15px;
    color: var(--gray-400);
    margin-top: 4px;
}
.price-note-sm {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 4px;
}
.price-info {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 8px;
    padding: 8px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}
.feature-include {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.feature-include-check {
    color: var(--green);
    font-size: 18px;
    line-height: 1;
}
.feature-include-check-primary {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}
.pricing-features-list {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pricing-features-list-sm {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    text-align: left;
}
.pricing-features-list-sm .feature-include {
    gap: 8px;
    margin-bottom: 12px;
}
.pricing-features-list-sm .feature-include:last-child {
    margin-bottom: 0;
}
.pricing-actions {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-actions .btn {
    width: 100%;
}
.pricing-card-hero {
    max-width: 560px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.pricing-card-sm {
    max-width: 520px;
    margin: 48px auto 0;
    background: white;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.section-mt {
    margin-top: 56px;
}
.section-mb-lg {
    margin-bottom: 96px;
}
.practice-tip {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    font-size: 14px;
    color: var(--gray-700);
}
.practice-tip strong {
    color: var(--primary);
}
.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-item {
    padding: 24px 28px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}
.faq-item h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
}
.faq-item p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
.faq-item a {
    color: var(--primary);
    font-weight: 500;
}
.hero-actions-inline {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-actions-center {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.error-code {
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 800;
    color: rgba(255,255,255,.15);
    line-height: 1;
    margin-bottom: 16px;
}
.page-hero-centered {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.page-hero-extended {
    padding: 120px 0 100px;
}
.industry-emoji-lg {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}
.section-bg-gray {
    background: var(--gray-50);
}
.container-narrow {
    max-width: 760px;
}
.section-subtitle-centered {
    margin: 0 auto;
    text-align: center;
}
.section-subtitle-spaced {
    margin: 0 auto 32px;
}
.overflow-x-auto {
    overflow-x: auto;
}
.section-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}
.btn-full {
    width: 100%;
}
.reseller-cta-wrapper {
    padding: 0 24px 80px;
}


/* --- Extracted Inline Styles (Phase 2) --- */
.section-title-sm { font-size: clamp(22px, 3vw, 32px); }
.section-title-md { font-size: clamp(24px, 3vw, 36px); }
.section-subtitle-mb { margin-bottom: 28px; }
.feature-showcase-spaced { margin-bottom: 80px; }
.feature-duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.features-grid-compact { margin-top: 40px; }
.feature-showcase-compact { margin-top: 48px; }
.section-header-mb { margin-bottom: 72px; }
.screenshot-section .section-title span { color: #818CF8; }
.screenshot-section .section-subtitle { color: rgba(255,255,255,.6); margin: 0 auto; }
.screenshot-placeholder-label { font-size: 14px; color: var(--gray-400); }
.screenshot-placeholder-hint { font-size: 12px; color: #CBD5E1; }
.screenshot-placeholder-hint-sm { font-size: 11px; color: #CBD5E1; }
.hero-floating-emoji { font-size: 18px; }
.hero-screenshot-hint { font-size: 12px; opacity: .6; }
.feature-showcase-visual.is-transparent { padding: 0; background: transparent; border: none; box-shadow: none; }
.mt-24 { margin-top: 24px; }
.contact-type-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; justify-content: center; }
.trust-box { margin-top: 32px; padding: 20px; background: var(--green-light); border-radius: var(--radius-md); border: 1px solid #BBF7D0; }
.trust-box-label { font-size: 13px; font-weight: 700; color: #15803D; margin-bottom: 12px; }
.trust-box-list { display: flex; flex-direction: column; gap: 8px; }
.trust-box-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #166534; }
.alert-error { background: #FFF1F2; color: #BE123C; border: 1px solid #FECDD3; margin-bottom: 20px; }
.form-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.honeypot { position: absolute; left: -9999px; }
.btn-submit { width: 100%; justify-content: center; padding: 15px; }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 14px; }
.text-danger { color: #E11D48; }
.how-grid-wide { max-width: 900px; margin-left: auto; margin-right: auto; }
.reseller-banner-dark { background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%); }
.error-title { font-size: clamp(24px, 4vw, 36px); }
.mt-8 { margin-top: 8px; }
.section-label-centered { justify-content: center; }
.section-mt-lg { margin-top: 96px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

