/* --- Vibe Coding Group Custom Styles (zentral, bereinigt) --- */

body {
    background: #181828;
    color: #f1f1f1;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}
h1 {
    color: #00e6d0;
}
button {
    background: #222;
    color: #00e6d0;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}
button:hover {
    background: #00e6d0;
    color: #181818;
}

.logo { font-family: 'Poppins', Arial, sans-serif; font-size: 1.7rem; color: #6B46C1; font-weight: bold; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; }
.logo:hover { text-decoration: none; }
nav a { color: #f1f1f1; text-decoration: none; margin: 0 1.2rem; font-weight: 500; }
nav a:hover { color: #06B6D4; }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.google-btn { background: #fff; color: #181818; border: none; border-radius: 4px; padding: 8px 18px; font-weight: 600; display: flex; align-items: center; gap: 8px; cursor: pointer; font-family: 'Inter', Arial, sans-serif; }
.google-btn img { height: 20px; }
.start-btn { background: #6B46C1; color: #fff; border: none; border-radius: 4px; padding: 10px 24px; font-weight: 700; font-family: 'Inter', Arial, sans-serif; cursor: pointer; transition: background 0.2s; }
.start-btn:hover { background: #06B6D4; color: #181818; }

/* Hero Gradient Background */
.hero {
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, #181828 0%, #23233a 60%, #1F2937 100%);
    min-height: 520px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 2rem 2rem;
}
#heroParticles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-content {
    flex: 1 1 350px;
    max-width: 520px;
    z-index: 2;
    position: relative;
}
.hero-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    font-weight: 900;
}
.hero-title span {
    background: linear-gradient(90deg, #6B46C1 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 900;
}
.hero-desc {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2.2rem;
}
.hero-cta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}
.start-btn, .google-btn {
    font-size: 1.15rem;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 0 16px #6B46C1aa;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}
.start-btn:hover, .google-btn:hover {
    box-shadow: 0 0 32px #06B6D4cc, 0 0 8px #fff2;
    background: #06B6D4;
    color: #181828;
}
.hero-img {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 2;
    position: relative;
    min-width: 340px;
}
.code-mockup {
    background: #23233a;
    color: #fff;
    border-radius: 16px;
    padding: 2.2rem 2.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.08rem;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 0 32px #06B6D4aa, 0 4px 32px #0002;
    position: relative;
    z-index: 2;
    margin-right: -60px;
    filter: drop-shadow(0 0 16px #6B46C1aa);
    transition: box-shadow 0.3s, filter 0.3s;
}
.ai-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 160px;
    margin-left: -40px;
    z-index: 3;
    position: relative;
    animation: ai-glow 2.5s infinite alternate;
}
.ai-logo svg {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 0 32px #06B6D4cc) drop-shadow(0 0 12px #6B46C1cc);
    transition: filter 0.3s;
}
@keyframes ai-glow {
    0% { filter: drop-shadow(0 0 32px #06B6D4cc) drop-shadow(0 0 12px #6B46C1cc); }
    100% { filter: drop-shadow(0 0 64px #06B6D4ff) drop-shadow(0 0 24px #6B46C1ff); }
}
@media (max-width: 1100px) {
    .hero-img { flex-direction: column; gap: 1.5rem; min-width: 0; }
    .code-mockup { margin-right: 0; }
    .ai-logo { margin-left: 0; margin-top: 1.5rem; }
}
@media (max-width: 700px) {
    .hero { flex-direction: column; padding: 2rem 0.5rem 1rem 0.5rem; }
    .hero-content, .hero-img { max-width: 100%; }
    .code-mockup { padding: 1.2rem 0.7rem; min-width: 0; max-width: 98vw; }
    .ai-logo { min-width: 100px; min-height: 100px; }
    .ai-logo svg { width: 80px; height: 80px; }
}

section { padding: 3.5rem 2rem 2rem 2rem; max-width: 1200px; margin: 0 auto; }
.features { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.feature-card {
    background: #23233a; border-radius: 10px; padding: 2rem 1.5rem; flex: 1 1 220px; max-width: 300px; min-width: 220px;
    box-shadow: 0 2px 12px #0001; margin-bottom: 1rem;
}
.feature-card h3 { color: #06B6D4; font-size: 1.1rem; margin-bottom: 0.7rem; }
.feature-card p { color: #f1f1f1; font-size: 1rem; }
.section-title { text-align: center; color: #6B46C1; font-family: 'Poppins', Arial, sans-serif; font-size: 2rem; margin-bottom: 2rem; }
.prompt-demo { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }

.editor-card {
    background: #181828;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0002;
    flex: 1 1 320px;
    max-width: 370px;
    min-width: 260px;
    margin-bottom: 1.5rem;
    margin-right: 0.5rem;
    overflow: hidden;
    border: 1.5px solid #23233a;
    display: flex;
    flex-direction: column;
    max-width: 540px;
    width: 100%;
}
.editor-header {
    background: #23233a;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #23233a;
}
.dot {
    width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 4px;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.editor-title {
    color: #aaa; font-size: 0.98rem; margin-left: 0.7rem; font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem;
}
.editor-content {
    background: transparent;
    color: #f1f1f1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    padding: 1.2rem 1.2rem 1.2rem 1.5rem;
    margin: 0;
    min-height: 170px;
    white-space: pre-line;
    padding: 2rem 2rem 1.5rem 2rem;
}
.editor-content label {
    color: #06B6D4;
    font-size: 1rem;
    font-family: 'JetBrains Mono', monospace;
    display: block;
    margin-bottom: 0.3rem;
}
.editor-content select, .editor-content input {
    background: #23233a;
    color: #f1f1f1;
    border: 1px solid #333;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    padding: 7px 10px;
    margin-bottom: 1.1rem;
    width: 100%;
    box-sizing: border-box;
}
.editor-content button[type="submit"] {
    background: #6B46C1;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-weight: 700;
    font-family: 'Inter', Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
    width: 100%;
}
.editor-content button[type="submit"]:hover {
    background: #06B6D4;
    color: #181828;
}
.prompt-output-card {
    background: #181828;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0002;
    max-width: 100%;
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1.5px solid #23233a;
    display: none;
    flex-direction: column;
}
.prompt-output-card.active { display: flex; }
.prompt-output-header {
    background: #23233a;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #23233a;
}
.prompt-output-title {
    color: #aaa; font-size: 1.05rem; font-family: 'JetBrains Mono', monospace;
}
.copy-btn {
    background: #06B6D4;
    color: #181828;
    border: none;
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 0.98rem;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.copy-btn:hover {
    background: #6B46C1;
    color: #fff;
}
.prompt-output-content {
    background: transparent;
    color: #f1f1f1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    padding: 1.5rem 2rem 1.5rem 2rem;
    margin: 0;
    min-height: 120px;
    white-space: pre-line;
    border: none;
    resize: none;
    width: 100%;
    min-height: 340px;
    max-width: 100%;
    resize: vertical;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 3rem 1rem 2rem 1rem;
}

.flow-container {
    display: flex;
    height: 100vh;
}
.sidebar {
    width: 320px;
    background: #1F2937;
    padding: 2rem 1rem 1rem 1rem;
    border-right: 1.5px solid #23233a;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.sidebar h3 {
    color: #6B46C1;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
}
.block-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.block-item {
    background: #23233a;
    color: #fff;
    border-radius: 7px;
    padding: 0.7rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    cursor: grab;
    border: 1px solid #23233a;
    transition: background 0.15s, color 0.15s, border 0.15s;
}
.block-item:hover {
    background: #06B6D4;
    color: #181828;
    border: 1px solid #06B6D4;
}
.canvas {
    flex: 1;
    position: relative;
    background: #181828;
    overflow: auto;
}
.node {
    position: absolute;
    min-width: 200px;
    max-width: 320px;
    background: #181828;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0002;
    border: 2px solid #23233a;
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    padding: 1rem 1.2rem 2.2rem 1.2rem;
    cursor: move;
    z-index: 2;
    transition: box-shadow 0.2s, border 0.2s;
}
.node.selected {
    border: 2.5px solid #06B6D4;
    box-shadow: 0 0 0 2px #06B6D4aa;
}
.node .node-title {
    color: #6B46C1;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', Arial, sans-serif;
}
.node.type-task .node-title {
    color: #06B6D4;
}
.node .node-content {
    font-size: 0.98rem;
}
.node .node-edit, .node .node-delete {
    position: absolute;
    bottom: 8px;
    font-size: 1.1rem;
    background: #23233a;
    color: #aaa;
    border: none;
    border-radius: 4px;
    padding: 2px 8px;
    cursor: pointer;
    margin-right: 6px;
    transition: background 0.15s, color 0.15s;
}
.node .node-edit:hover, .node .node-delete:hover {
    background: #06B6D4;
    color: #181828;
}
.node .node-edit { right: 38px; }
.node .node-delete { right: 8px; }

/* Ports/Verbindungen */
.node-port {
    width: 16px;
    height: 16px;
    background: #06B6D4;
    border: 2px solid #FEF3C7;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    box-shadow: 0 0 8px #06B6D4cc;
}
.node-port.input { left: -12px; }
.node-port.output { right: -12px; }
.connection-line {
    stroke: #06B6D4;
    stroke-width: 3;
    filter: drop-shadow(0 0 6px #06B6D4cc);
}

.live-preview {
    width: 350px;
    background: #23233a;
    border-left: 2px solid #06B6D4;
    padding: 2rem 1.2rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.live-preview h3 {
    color: #6B46C1;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
}
.preview-box {
    background: #181828;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0002;
    border: 2px solid #06B6D4;
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    padding: 1.2rem 1rem;
    min-height: 180px;
    font-size: 1rem;
    white-space: pre-line;
}

.how-steps { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.how-card {
    background: #23233a; border-radius: 10px; padding: 1.5rem 1.2rem; flex: 1 1 220px; max-width: 300px; min-width: 220px;
    box-shadow: 0 2px 12px #0001; margin-bottom: 1rem;
}
.how-card h5 { color: #06B6D4; margin-bottom: 0.5rem; }
.testimonials { background: linear-gradient(135deg, #6B46C1 0%, #06B6D4 100%); color: #fff; padding: 4rem 2rem; }
.testimonial-cards { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.testimonial-card {
    background: #fff2; border-radius: 10px; padding: 1.5rem 1.2rem; flex: 1 1 220px; max-width: 320px; min-width: 220px;
    color: #fff; font-size: 1rem; font-style: italic; box-shadow: 0 2px 12px #0001;
}
.testimonial-card .author { font-weight: bold; font-style: normal; margin-top: 1rem; display: block; }
.faq { max-width: 700px; margin: 0 auto; }
.unified-faq {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    background: none;
    padding: 0;
}
.unified-faq .faq-item {
    background: #23233a;
    border-radius: 12px;
    box-shadow: 0 2px 16px #0002;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
    border: 1.5px solid #23233a;
}
.unified-faq .faq-item.open {
    box-shadow: 0 4px 24px #06B6D455;
    border-color: #06B6D4;
}
.unified-faq .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.18rem;
    font-weight: 700;
    color: #06B6D4;
    padding: 1.3rem 2.1rem 1.3rem 1.7rem;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    transition: color 0.2s;
    position: relative;
}
.unified-faq .faq-q::after {
    content: '\25BC';
    font-size: 1.1rem;
    color: #6B46C1;
    margin-left: 1.2rem;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.unified-faq .faq-item.open .faq-q::after {
    transform: rotate(-180deg);
}
.unified-faq .faq-a {
    padding: 0 2.1rem 1.5rem 1.7rem;
    color: #f1f1f1;
    font-size: 1.08rem;
    line-height: 1.7;
    display: none;
    animation: fadeInFaq 0.4s;
}
.unified-faq .faq-item.open .faq-a {
    display: block;
}
@keyframes fadeInFaq {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.faq-item { background: #23233a; border-radius: 8px; margin-bottom: 1rem; }
.faq-q { padding: 1rem 1.2rem; cursor: pointer; font-weight: 600; color: #06B6D4; }
.faq-a { padding: 0 1.2rem 1rem 1.2rem; display: none; color: #f1f1f1; }
.faq-item.open .faq-a { display: block; }
.footer-cta {
    background: linear-gradient(135deg, #6B46C1 0%, #06B6D4 100%); color: #fff; text-align: center; padding: 3rem 2rem 2rem 2rem;
}
.footer-cta h2 { font-family: 'Poppins', Arial, sans-serif; font-size: 2rem; margin-bottom: 1rem; }
.footer-cta p { font-size: 1.1rem; margin-bottom: 2rem; }
footer { text-align: center; color: #aaa; font-size: 0.95rem; padding: 1.5rem 0 0.5rem 0; }
.footer-links { margin-top: 0.5rem; }
.footer-links a { color: #fff; margin: 0 0.7rem; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .hero { flex-direction: column; }
    .hero-content, .hero-img { max-width: 100%; }
    .features, .prompt-demo, .how-steps, .testimonial-cards { flex-direction: column; align-items: center; }
}
@media (max-width: 700px) {
    .editor-card, .prompt-output-card { max-width: 98vw; }
    .editor-content, .prompt-output-content { padding: 1rem; }
    .unified-faq {
        max-width: 98vw;
        padding: 0 0.2rem;
    }
    .unified-faq .faq-q, .unified-faq .faq-a {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.page-main {
    max-width: 700px;
    margin: 3rem auto 2rem auto;
    padding: 2rem;
    background: #23233a;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0002;
}
.page-title {
    color: #6B46C1;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.page-text {
    color: #f1f1f1;
    font-size: 1.1rem;
}

/* Dashboard */
.dashboard-welcome { width:100%;max-width:700px;display:flex;align-items:center;justify-content:space-between;margin-bottom:2.5rem; }
.dashboard-title { font-family:'Poppins',Arial,sans-serif;font-size:1.2rem;color:#fff;font-weight:700; }
.dashboard-sub { color:#aaa;font-size:0.98rem; }
.dashboard-tools { display:flex;gap:2.5rem;flex-wrap:wrap;justify-content:center;width:100%;max-width:900px; }
.dashboard-card { background:#23233a;border-radius:12px;box-shadow:0 2px 12px #0002;border:1.5px solid #23233a;padding:2.2rem 2rem;min-width:260px;max-width:340px;flex:1 1 260px;display:flex;flex-direction:column;align-items:flex-start; }
.dashboard-card-title { font-family:'Poppins',Arial,sans-serif;font-size:1.1rem;color:#6B46C1;font-weight:700;margin-bottom:0.7rem; }
.dashboard-card.flow .dashboard-card-title { color:#06B6D4; }
.dashboard-card-desc { color:#f1f1f1;font-size:1rem;margin-bottom:1.2rem; }
.dashboard-card-btn { background:#6B46C1;color:#fff;border:none;border-radius:4px;padding:10px 24px;font-weight:700;font-family:'Inter',Arial,sans-serif;cursor:pointer;text-decoration:none; }
.dashboard-card-btn.flow { background:#06B6D4;color:#181828; }
.dashboard-card-btn:hover { background:#06B6D4;color:#181828; }

/* Promptbuilder Layout */
html, body {
    overflow-x: hidden;
}
.pb-layout {
    display: grid;
    grid-template-columns: 22% 1fr 22%;
    min-height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    background: #181828;
}

.pb-aside {
    background: #181828;
    border-right: 1.5px solid #23233a;
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
    max-width: 340px;
    position: sticky;
    top: 54px;
    height: calc(100vh - 54px);
    z-index: 2;
}

.pb-main {
    min-width: 0;
    padding: 2rem 20px 1.2rem 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.pb-sidebar {
    width: 100%;
    background: #181828;
    border-left: 1.5px solid #23233a;
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    min-width: 180px;
    max-width: 340px;
    position: sticky;
    top: 54px;
    height: calc(100vh - 54px);
    z-index: 2;
}

.pb-title { font-family:'Poppins',Arial,sans-serif;font-size:1.1rem;color:#6B46C1;font-weight:700;margin-bottom:1.2rem; }
.pb-select { margin-bottom:0.7rem; }
.pb-input { margin-bottom:0.7rem; }
.pb-button { width:100%; }
.pb-footer { background:#1F2937;color:#aaa;font-size:0.98rem;padding:0.7rem 2rem;text-align:center;border-top:1.5px solid #23233a;display:flex;align-items:center;justify-content:center;gap:1.5rem; }
.pb-footer a { color:#aaa;text-decoration:none;display:flex;align-items:center;gap:0.3rem; }
.pb-footer a:hover { text-decoration:underline; }

/* Header */
.main-header { display:flex;align-items:center;justify-content:space-between;padding:0.7rem 2rem;background:#1F2937;border-bottom:1.5px solid #23233a;min-height:54px; }
.logo { font-family:'Poppins',Arial,sans-serif;font-size:1.25rem;color:#6B46C1;font-weight:700;letter-spacing:2px; }
.main-nav { display:flex;align-items:center;gap:1.5rem; }
.nav-link { color:#06B6D4;text-decoration:none;font-size:1rem;font-family:'Inter',Arial,sans-serif; }
.nav-link:hover { text-decoration:underline; }
.user-info { display:flex;align-items:center;gap:1rem; }
.user-avatar { width:36px;height:36px;border-radius:50%;border:2px solid #06B6D4;background:#23233a; }
.user-name { color:#fff;font-size:1rem;font-family:'Inter',Arial,sans-serif;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block;vertical-align:middle; }
.logout-form { display:inline; }
.logout-btn { background:#23233a;color:#06B6D4;border:none;border-radius:4px;padding:6px 14px;font-weight:600;cursor:pointer;font-size:0.98rem; }
.google-logo { height:20px; }

/* --- New Sections Design --- */
.about-content {
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    background: #23233a;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0002;
    padding: 2rem 2.2rem;
    color: #f1f1f1;
    font-size: 1.13rem;
    line-height: 1.7;
}

.use-cases-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.use-case {
    background: #23233a;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0001;
    color: #06B6D4;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 1.2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    text-align: center;
}

.feature-table {
    overflow-x: auto;
    margin: 0 auto 2.5rem auto;
    max-width: 900px;
    background: #23233a;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0002;
    padding: 2rem 1.2rem;
}
.feature-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.08rem;
    color: #f1f1f1;
}
.feature-table th, .feature-table td {
    border: 1px solid #363656;
    padding: 0.9rem 1.1rem;
    text-align: center;
}
.feature-table th {
    background: #181828;
    color: #06B6D4;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.13rem;
}
.feature-table td {
    background: #23233a;
}

@media (max-width: 900px) {
    .about-content, .feature-table {
        padding: 1.2rem 0.5rem;
    }
    .use-cases-grid {
        flex-direction: column;
        gap: 1rem;
    }
}

.custom-why-prompts {
    margin-bottom: 3.5rem;
}
.why-prompts-container {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.why-message {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 420px;
}
.why-slider {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slider-window {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #23233a;
    box-shadow: 0 2px 12px #0002;
    margin-bottom: 1.1rem;
    min-height: 110px;
}
.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.slider-item {
    min-width: 100%;
    padding: 1.5rem 1.2rem;
    color: #06B6D4;
    font-size: 1.08rem;
    font-style: italic;
    text-align: center;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.slider-author {
    color: #6B46C1;
    font-size: 0.98rem;
    font-style: normal;
    margin-top: 0.7rem;
    font-weight: 600;
}
.slider-controls {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}
.slider-prev, .slider-next {
    background: #06B6D4;
    color: #181828;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.18s, color 0.18s;
}
.slider-prev:hover, .slider-next:hover {
    background: #6B46C1;
    color: #fff;
}

.custom-section-svg {
    margin-bottom: 3.5rem;
}
.svg-section-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.svg-col {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
}
.svg-content {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 600px;
}
@media (max-width: 900px) {
    .why-prompts-container, .svg-section-row {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }
    .svg-col {
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }
}

.why-lead {
    font-size: 1.22rem;
    font-weight: 700;
    color: #06B6D4;
    margin-bottom: 1.1rem;
}
.why-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
}
.why-benefits li {
    position: relative;
    padding-left: 1.7em;
    margin-bottom: 0.6em;
    color: #f1f1f1;
    font-size: 1.08rem;
}
.why-benefits li::before {
    content: '';
    display: inline-block;
    width: 0.7em;
    height: 0.7em;
    background: #06B6D4;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.45em;
}
.why-slider-auto .slider-window {
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #23233a;
    border-radius: 14px;
    box-shadow: 0 2px 16px #0002;
    margin-bottom: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.why-slider-auto .slider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    max-width: 380px;
    padding: 2.2rem 1.7rem 1.5rem 1.7rem;
    font-size: 1.22rem;
    color: #fff;
    font-style: italic;
    text-align: center;
    position: relative;
    word-break: break-word;
    box-sizing: border-box;
}
.slider-quote {
    display: block;
    font-size: 1.22rem;
    color: #06B6D4;
    margin-bottom: 0.7rem;
    font-style: italic;
    text-align: center;
    max-width: 340px;
    word-break: break-word;
    line-height: 1.4;
}
.slider-avatar {
    display: block;
    margin: 0 auto 1.1rem auto;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    overflow: hidden;
    box-shadow: 0 2px 8px #06B6D455;
}
.slider-author {
    display: block;
    font-size: 1.01rem;
    color: #aaa;
    font-style: normal;
    margin-top: 0.2rem;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .pb-layout {
        grid-template-columns: 1fr 2fr 1fr;
    }
    .pb-aside, .pb-sidebar {
        min-width: 120px;
        max-width: 220px;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .pb-main {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
}

@media (max-width: 700px) {
    .pb-layout {
        display: block;
    }
    .pb-aside, .pb-sidebar, .pb-main {
        position: static;
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        height: auto;
        border: none;
        padding: 1rem 0.5rem;
    }
    .pb-sidebar {
        order: 3;
        margin-top: 2rem;
        border-top: 1.5px solid #23233a;
    }
    .pb-aside {
        order: 1;
        border-bottom: 1.5px solid #23233a;
    }
    .pb-main {
        order: 2;
    }
}
