/* MoreTimeSystems */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #1a1a1a;
    --color-primary-light: #333;
    --color-accent: #2563eb;
    --color-accent-hover: #1d4ed8;
    --color-text: #374151;
    --color-text-light: #6b7280;
    --color-text-muted: #9ca3af;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-bg-warm: #fafaf8;
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
    --color-success: #059669;

    --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --max-width: 1120px;
    --transition: 0.2s ease;
    --radius: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
}

html {
    font-size: 16px;
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    font-family: var(--font-main);
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--color-accent);
    color: #fff;
}

h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--color-primary);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.85rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.03em;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.nav-cta {
    background: var(--color-accent);
    color: #fff !important;
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem !important;
}

.nav-cta:hover {
    background: var(--color-accent-hover);
    color: #fff !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.15rem;
    font-size: 0.875rem;
}

.btn-full { width: 100%; }

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-ghost:hover {
    border-color: var(--color-text);
    color: var(--color-primary);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: #fff;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 5rem 0 4rem;
    background: var(--color-bg);
    min-height: 320px;
    contain: layout style;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   PAIN / STATS
   ============================================ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.pain-item {
    text-align: center;
}

.pain-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.pain-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section h2 {
    max-width: 600px;
}

.section h2:only-child,
.products-grid + h2,
.section > .container > h2 {
    text-align: left;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition);
}

.product-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ecfdf5;
    color: var(--color-success);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-icon {
    width: 40px;
    height: 40px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.product-hook {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.product-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.product-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features li {
    padding: 0.35rem 0;
    font-size: 0.875rem;
    color: var(--color-text);
    padding-left: 1.25rem;
    position: relative;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 0.8rem;
}

.section-intro {
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 0.5rem;
}

.system-note {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.system-note p {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 1.25rem;
}

.back-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.back-link:hover {
    color: var(--color-accent);
}

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    padding: 1.5rem;
}

.step-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-border);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ============================================
   SPLIT SECTION
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.split-text h2 {
    max-width: none;
}

.split-text p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.check-list {
    margin-top: 1.5rem;
}

.check-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.split-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.example-card {
    padding: 1.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.example-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.example-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.example-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.example-before {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.55;
}

.example-after {
    font-size: 0.875rem;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.55;
}

/* ============================================
   HIGHLIGHT (Teilzeit)
   ============================================ */
.partner-block {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.partner-block h2 {
    max-width: none;
}

.partner-block p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.highlight-section {
    background: var(--color-primary);
}

.highlight-box {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.highlight-box h2 {
    color: #fff;
    max-width: none;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.highlight-box > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.highlight-stats > div {
    padding: 1.25rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.highlight-stats strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.highlight-stats p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .highlight-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SECURITY
   ============================================ */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-item {
    padding: 1.75rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.security-item:hover {
    border-color: var(--color-primary);
}

.security-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.security-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.65;
}

.security-item-full {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    text-align: center;
    background: var(--color-primary);
    padding: 4.5rem 0;
}

.cta-section h2 {
    color: #fff;
    max-width: none;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background: var(--color-bg-alt);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   PAGE HEADER (About, Contact)
   ============================================ */
.page-header {
    background: var(--color-bg-alt);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    max-width: 600px;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.page-header-sub {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about-content {
    max-width: 680px;
}

.about-block {
    margin-bottom: 2.5rem;
}

.about-block h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.about-block p {
    color: var(--color-text-light);
    font-size: 1.02rem;
    line-height: 1.75;
}

.legal-block {
    margin-bottom: 2rem;
}

.legal-block h2 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.legal-block h3 {
    font-size: 0.95rem;
    margin-top: 1.25rem;
    margin-bottom: 0.35rem;
}

.legal-block p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

.about-list li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-text);
}

.about-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-info > p {
    color: var(--color-text-light);
    font-size: 1rem;
}

.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}

.trust-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.contact-details {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.contact-details p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-form {
    background: var(--color-bg);
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-optional {
    font-weight: 400;
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition);
    background: var(--color-bg);
    color: var(--color-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash-message {
    max-width: var(--max-width);
    margin: 1rem auto;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.flash-success {
    background: #ecfdf5;
    color: var(--color-success);
    border: 1px solid #a7f3d0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0;
}

.footer-contact-quick p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0;
}

/* ============================================
   BLOG INDEX
   ============================================ */
.blog-header {
    margin-bottom: 3rem;
}

.blog-header h2 {
    max-width: none;
}

.blog-header p {
    color: var(--color-text-light);
    max-width: 550px;
}

/* Blog list */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-list-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.blog-list-item:first-child {
    padding-top: 0;
}

.blog-list-item:last-child {
    border-bottom: none;
}

.blog-list-left {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.blog-list-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.blog-card-tag {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    width: fit-content;
}

.blog-list-right h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.blog-list-right > p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.blog-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    cursor: pointer;
}

.blog-card-link:hover {
    color: var(--color-accent-hover);
}

/* Blog expand */
.blog-card-full {
    display: none;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.blog-card-full.open {
    display: block;
}

.blog-card-full h2 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.blog-card-full p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-light);
}

.blog-card-full ul {
    margin: 0.75rem 0 1rem 1.25rem;
}

.blog-card-full li {
    padding: 0.2rem 0;
    font-size: 0.9rem;
    color: var(--color-text);
    list-style: disc;
}

@media (max-width: 768px) {
    .blog-list-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .blog-list-left {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
}

.blog-card-full ul {
    margin: 0.75rem 0 1rem 1.25rem;
}

.blog-card-full li {
    padding: 0.2rem 0;
    font-size: 0.9rem;
    color: var(--color-text);
    list-style: disc;
}

/* Blog detail */
.blog-post {
    max-width: 700px;
}

.blog-post-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.blog-post h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.blog-post p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.blog-post ul, .blog-post ol {
    margin: 1rem 0 1.5rem 1.25rem;
}

.blog-post li {
    padding: 0.25rem 0;
    font-size: 1rem;
    color: var(--color-text);
    list-style: disc;
}

.blog-post-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

/* ============================================
   PAKETE
   ============================================ */
.paket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.paket-card {
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.paket-card-pop {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.paket-badge {
    position: absolute;
    top: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.paket-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.paket-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.paket-price small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.paket-card > p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.paket-card ul {
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.paket-card li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--color-text);
}

.paket-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 0.8rem;
}

.paket-card {
    border-radius: 16px;
}

.paket-info-wrap {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 12;
}

.paket-info-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    font-style: italic;
    font-family: Georgia, serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    padding: 0;
    line-height: 1;
}

.paket-info-btn:hover {
    background: var(--color-accent);
    color: #fff;
}

/* Overlay hintergrund */
.paket-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.paket-overlay.open {
    display: block;
}

/* Popup modal */
.paket-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 440px;
    background: var(--color-bg);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    padding: 2rem;
    z-index: 1000;
}

.paket-popup.open {
    display: block;
}

.paket-popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--color-bg-alt);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.paket-popup-close:hover {
    background: var(--color-border);
    color: var(--color-primary);
}

.paket-popup h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.paket-popup p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .paket-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   KONFIGURATOR
   ============================================ */
.konfig-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

.konfig-section {
    margin-bottom: 3rem;
}

.konfig-section h2 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.konfig-hint {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* Single Brain */
.single-brain-card {
    cursor: pointer;
}

.single-brain-inner {
    padding: 2rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    transition: all var(--transition);
}

.single-brain-card:hover .single-brain-inner {
    border-color: var(--color-text-muted);
}

.single-brain-card.active .single-brain-inner {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: rgba(37, 99, 235, 0.02);
}

.single-brain-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.single-brain-head h3 {
    font-size: 1.35rem;
    margin-bottom: 0.2rem;
}

.single-brain-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.single-brain-price {
    text-align: right;
    white-space: nowrap;
}

.single-brain-price span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.single-brain-price small {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.single-brain-inner > p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.server-badge-single {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-accent);
}

.single-brain-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.single-brain-select {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    cursor: pointer;
}

.single-brain-card.active .single-brain-select {
    color: var(--color-success);
}

/* Divider */
.konfig-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.konfig-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-border);
}

.konfig-divider span {
    position: relative;
    background: var(--color-bg);
    padding: 0 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Server Cards */
.server-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.server-card {
    cursor: pointer;
    position: relative;
}

.server-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.server-card-inner {
    padding: 1.5rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.server-card:hover .server-card-inner {
    border-color: var(--color-text-muted);
}

.server-card.active .server-card-inner {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.server-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.server-card-head h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.server-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    white-space: nowrap;
}

.server-price small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.server-card-inner > p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.55;
    flex-grow: 1;
}

.server-specs {
    margin-bottom: 0.75rem;
}

.server-specs li {
    font-size: 0.8rem;
    color: var(--color-text);
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
}

.server-specs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 0.75rem;
}

.server-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    align-self: flex-start;
}

.server-badge-pop {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-accent);
}

.server-badge-pro {
    background: rgba(5, 150, 105, 0.1);
    color: var(--color-success);
}

.server-badge-max {
    background: rgba(26, 26, 26, 0.08);
    color: var(--color-primary);
}

/* Konfig Fields */
.konfig-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.konfig-field {
    flex: 1;
    min-width: 220px;
}

.konfig-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.konfig-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
}

.stepper-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-bg-alt);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper-btn:hover {
    background: var(--color-border);
}

.konfig-stepper input {
    width: 70px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--color-primary);
    background: var(--color-bg);
    -moz-appearance: textfield;
}

.konfig-stepper input::-webkit-outer-spin-button,
.konfig-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.konfig-unit {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.4rem;
}

.agent-info-box {
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.agent-info-box h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.agent-info-box p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

.agent-checklist {
    margin-top: 0.75rem;
}

.agent-checklist li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--color-text);
    font-weight: 500;
}

.agent-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 0.8rem;
}

.user-tier-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.user-tier-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
    vertical-align: middle;
    font-size: 0.9rem;
}

.user-tier-table tr:last-child td {
    border-bottom: none;
}

.user-tier-table td:first-child {
    width: auto;
}

.user-tier-table td strong {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.user-tier-price-cell {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
    padding-left: 1rem;
}

.user-tier-table td:last-child {
    text-align: right;
    width: 1%;
    white-space: nowrap;
}

.konfig-capture-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.konfig-capture-info h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.konfig-capture-info p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

.agent-own-toggle {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.agent-own-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
}

.agent-own-label input {
    accent-color: var(--color-accent);
    width: 16px;
    height: 16px;
}

.agent-own-hint {
    font-size: 0.8rem;
    color: var(--color-success);
    font-weight: 500;
}

@media (max-width: 768px) {
    .agent-own-toggle {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}

.konfig-auto-hint {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.konfig-example {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    padding: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}

/* Summary Sidebar */
.konfig-summary {
    position: sticky;
    top: 5rem;
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.summary-contract {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.summary-contract-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.contract-options {
    display: flex;
    gap: 0.5rem;
}

.contract-option {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.contract-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contract-option-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-align: center;
}

.contract-option-inner strong {
    font-size: 0.8rem;
    color: var(--color-text);
}

.contract-discount {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-success);
    margin-top: 0.15rem;
}

.contract-option:hover .contract-option-inner {
    border-color: var(--color-text-muted);
}

.contract-option input:checked ~ .contract-option-inner {
    border-color: var(--color-accent);
    background: rgba(37, 99, 235, 0.04);
}

.summary-line-discount {
    color: var(--color-success);
    font-weight: 600;
}

.summary-line-discount span:last-child {
    color: var(--color-success);
}

.summary-tax-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.tax-switch {
    position: relative;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.tax-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.tax-switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--color-border);
    border-radius: 20px;
    transition: var(--transition);
}

.tax-switch-slider::before {
    content: '';
    position: absolute;
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.tax-switch input:checked + .tax-switch-slider {
    background: var(--color-accent);
}

.tax-switch input:checked + .tax-switch-slider::before {
    transform: translateX(16px);
}

.tax-switch-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.konfig-summary h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    font-size: 0.875rem;
    color: var(--color-text);
}

.summary-line span:last-child {
    font-weight: 600;
    white-space: nowrap;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    margin: 1rem 0;
    border-top: 2px solid var(--color-primary);
    font-weight: 700;
}

.summary-total-price {
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.summary-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.summary-single-buy {
    padding: 1rem;
    background: rgba(5, 150, 105, 0.06);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.summary-single-buy p {
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.summary-single-buy-detail {
    font-size: 0.8rem !important;
    color: var(--color-text-light) !important;
}

.summary-max-notice {
    padding: 1rem;
    background: rgba(37, 99, 235, 0.06);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.summary-max-notice p {
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .konfig-layout {
        grid-template-columns: 1fr;
    }

    .konfig-summary {
        position: static;
    }

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

@media (max-width: 768px) {
    .konfig-row {
        flex-direction: column;
        gap: 1.25rem;
    }
}

/* ============================================
   COMPARE TABLE
   ============================================ */
.compare-table-wrap {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 700px;
}

.compare-table thead th {
    text-align: center;
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.compare-table thead th:first-child {
    text-align: left;
}

.compare-table tbody td {
    text-align: center;
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.02);
}

.compare-label {
    text-align: left !important;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.compare-yes {
    color: var(--color-success);
    font-weight: 700;
    font-size: 1rem;
}

.compare-no {
    color: var(--color-text-muted);
}

.compare-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   JOBS / KARRIERE
   ============================================ */
.jobs-intro {
    max-width: 650px;
}

.jobs-intro p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.job-card {
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.job-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.job-card-top {
    margin-bottom: 1rem;
}

.job-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.job-card > p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
    flex-grow: 1;
}

.job-requirements {
    margin-bottom: 1.5rem;
}

.job-requirements li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--color-text);
}

.job-requirements li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.perk-item {
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}

.perk-item strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.perk-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        text-align: center;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section {
        padding: 3rem 0;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

/* ============================================
   DEMO PAGE
   ============================================ */
.demo-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
}

.demo-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
}

.demo-tab:hover { color: var(--color-text); }
.demo-tab.active { color: var(--color-accent); border-bottom-color: var(--color-accent); }

.demo-panel { display: none; }
.demo-panel.active { display: block; }

.demo-desc { margin-bottom: 1.5rem; }
.demo-desc h2 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.demo-desc p { color: var(--color-text-light); }

/* Phone Demo */
.phone-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.phone-frame {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg);
}

.phone-header {
    padding: 0.75rem 1rem;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-status {
    font-size: 0.8rem;
    font-weight: 600;
}

.phone-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.phone-chat {
    height: 350px;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.phone-hint {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: auto;
    margin-bottom: auto;
}

.phone-msg {
    font-size: 0.85rem;
    line-height: 1.55;
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    max-width: 85%;
    animation: msgIn 0.3s ease;
}

@keyframes msgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.phone-msg-ai {
    background: var(--color-bg-alt);
    color: var(--color-text);
    align-self: flex-start;
}

.phone-msg-user {
    background: var(--color-accent);
    color: #fff;
    align-self: flex-end;
}

.phone-msg-user strong { color: rgba(255,255,255,0.8); }

.phone-msg-system {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    align-self: center;
    padding: 0.25rem;
}

.phone-actions {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 0.5rem;
}

.phone-actions .btn { flex: 1; text-align: center; }

.phone-result {
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.phone-result h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-success);
}

.ticket-preview {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ticket-row {
    font-size: 0.85rem;
    color: var(--color-text);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.ticket-row:last-child { border-bottom: none; }

/* Automation Demo */
.auto-demo {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.auto-desktop {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #1e1e2e;
}

.auto-taskbar {
    padding: 0.5rem 1rem;
    background: #2a2a3d;
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.auto-screen {
    position: relative;
    min-height: 380px;
    padding: 1.5rem;
}

.auto-window {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.auto-window-bar {
    padding: 0.5rem 0.75rem;
    background: var(--color-bg-alt);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.auto-window-content {
    padding: 1rem;
}

.auto-field {
    margin-bottom: 0.75rem;
}

.auto-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.auto-field input {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: inherit;
    transition: all 0.15s ease;
}

.auto-btn {
    width: 100%;
    padding: 0.5rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.auto-cursor {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid var(--color-accent);
    border-right: 8px solid transparent;
    border-bottom: 12px solid transparent;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.auto-done {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-success);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: msgIn 0.4s ease;
}

.auto-chat {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
}

.auto-chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auto-chat-hint {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: auto;
}

.auto-msg {
    font-size: 0.825rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    max-width: 90%;
    animation: msgIn 0.3s ease;
    line-height: 1.5;
}

.auto-msg-user {
    background: var(--color-accent);
    color: #fff;
    align-self: flex-end;
}

.auto-msg-ai {
    background: var(--color-bg-alt);
    color: var(--color-text);
    align-self: flex-start;
}

.auto-chat-input {
    padding: 0.6rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 0.5rem;
}

.auto-chat-input input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-family: inherit;
}

.auto-chat-input input:focus {
    outline: none;
    border-color: var(--color-accent);
}

@media (max-width: 768px) {
    .phone-demo,
    .auto-demo {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: rgba(255,255,255,0.8);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 200;
    font-size: 0.85rem;
}

.cookie-banner p {
    margin-bottom: 0;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* ============================================
   SCROLL ANIMATIONS (subtle)
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in { opacity: 1; transform: none; }
}
