/* Index Page Specific Styles */

html {
    scroll-behavior: smooth;
}

#ki-diligence-anfrage {
    scroll-margin-top: 96px;
}


/* Header Top Navigation */

.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 16px;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-link-projects {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background-color: #262626;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Urbanist', sans-serif;
    transition: all 0.3s ease;
    border: 0.50px solid #BCBCBC;
    outline: none;
    cursor: pointer;
}

.nav-link-projects:hover {
    background-color: #2d2d2d;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    border-color: #BCBCBC;
}

.nav-link-projects .login-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-link-projects .login-icon svg {
    width: 100%;
    height: 100%;
}

.nav-link-projects .login-icon path {
    fill: white;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .nav-link-projects {
        width: auto;
        text-align: left;
        padding: 12px 20px;
        font-size: 14px;
    }
    .nav-link-projects .login-icon {
        width: 18px;
        height: 18px;
    }
}


/* Main Content Wrapper - Index Page Layout */

.main-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 1024px) {
    .main-content-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
    .main-content-wrapper form {
        flex: 1;
        min-width: 0;
    }
}


/* Pricing Section */

.pricing-section {
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-box {
    position: relative;
    display: block;
    cursor: pointer;
    border: 2px solid var(--drive-border);
    border-radius: 12px;
    background: #000000;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-box:hover {
    border-color: var(--drive-accent);
    box-shadow: 0 4px 12px rgba(92, 236, 150, 0.2);
    transform: translateY(-2px);
}

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

.pricing-box:has(input:checked) {
    border-color: var(--drive-accent);
    background: rgba(92, 236, 150, 0.05);
    box-shadow: 0 4px 16px rgba(92, 236, 150, 0.3);
}

.pricing-box-info {
    cursor: default;
}

.pricing-box-info:hover {
    transform: none;
}

.pricing-box-content {
    padding: 25px;
    position: relative;
}

.package-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.package-tag-starter {
    background: rgba(92, 236, 150, 0.15);
    color: var(--drive-accent);
}

.package-tag-premium {
    background: rgba(92, 236, 150, 0.2);
    color: var(--drive-accent);
}

.package-tag-subscription {
    background: rgba(92, 236, 150, 0.1);
    color: #28a745;
}

.package-tag-enterprise {
    background: rgba(255, 193, 7, 0.1);
    color: #ff9800;
}

.pricing-box-content h3 {
    font-size: 20px;
    color: var(--drive-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.pricing-box-content .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--drive-accent);
    margin-bottom: 4px;
}

.price-period {
    font-size: 18px;
    font-weight: 400;
    color: var(--drive-text-light);
}

.price-note {
    font-size: 13px;
    color: var(--drive-text-light);
    margin-bottom: 16px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--drive-text);
    line-height: 1.5;
}

.package-features li.feature-included:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--drive-accent);
    font-weight: 700;
}

.package-features li.feature-excluded {
    opacity: 0.6;
    color: var(--drive-text-light);
}

.package-features li.feature-excluded:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
}

.btn-contact {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--drive-accent);
    color: #000000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #4dd484;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(92, 236, 150, 0.4);
}


/* Checkout Sidebar - Index Page */

.checkout-sidebar {
    background: #000000;
    border: 2px solid var(--drive-border);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--drive-shadow);
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.checkout-header {
    padding: 20px 25px;
    border-bottom: 2px solid var(--drive-border);
    background: #000000;
    border-radius: 16px 16px 0 0;
}

.checkout-header h3 {
    font-size: 20px;
    color: var(--drive-primary);
    margin: 0;
    font-weight: 700;
}

.checkout-content {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
}

.checkout-actions {
    margin-top: 20px;
    margin-bottom: 20px;
}

.checkout-actions .btn-primary {
    width: 100%;
    max-width: 100%;
}

.checkout-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--drive-border);
    color: var(--drive-text-light);
}

.checkout-footer .service-note {
    font-size: 14px;
    font-weight: 600;
    color: var(--drive-text);
    margin: 0 0 10px 0;
}

.checkout-footer .agb-note {
    font-size: 12px;
    color: var(--drive-text-light);
    margin: 0;
}

.checkout-footer .agb-note a {
    color: var(--drive-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkout-footer .agb-note a:hover {
    color: #4dd484;
    text-decoration: underline;
}

.selected-package {
    font-size: 18px;
    font-weight: 600;
    color: var(--drive-primary);
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
}

.package-type-badge {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--drive-border);
}

.package-type-badge .badge-text {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(92, 236, 150, 0.15);
    color: var(--drive-accent);
    border: 1px solid var(--drive-accent);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-divider {
    height: 1px;
    background: var(--drive-border);
    margin: 20px 0;
}

.price-breakdown {
    margin-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--drive-text);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

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

.price-row-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--drive-primary);
    padding-top: 12px;
    margin-top: 12px;
    border-top: 2px solid var(--drive-border);
    border-bottom: none;
}

.voucher-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.voucher-section label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--drive-text);
}

.voucher-input-wrapper {
    display: flex;
    gap: 8px;
}

.voucher-input-wrapper input {
    flex: 1;
    padding: 10px 12px;
    background: #1a1a1a;
    border: 2px solid var(--drive-border);
    border-radius: 6px;
    color: var(--drive-text);
    font-size: 14px;
}

.voucher-input-wrapper input:focus {
    outline: none;
    border-color: var(--drive-accent);
}

.btn-voucher {
    padding: 10px 20px;
    background: var(--drive-accent);
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-voucher:hover {
    background: #4dd484;
}

.voucher-message {
    margin-top: 8px;
    font-size: 12px;
    padding: 8px;
    border-radius: 4px;
}

.voucher-message-success {
    background: rgba(92, 236, 150, 0.1);
    color: var(--drive-accent);
    border: 1px solid var(--drive-accent);
}

.voucher-message-error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid #ff4444;
}

@media (min-width: 1024px) {
    .checkout-sidebar {
        position: sticky;
        top: 20px;
        width: 350px;
        flex-shrink: 0;
        max-height: calc(100vh - 40px);
        display: flex;
        flex-direction: column;
    }
}


/* Mobile Bottom Sheet */

@media (max-width: 1023px) {
    .checkout-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 70vh;
        border-radius: 24px 24px 0 0;
        z-index: 1000;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    }
    .checkout-sidebar.visible {
        transform: translateY(0);
    }
    .checkout-sidebar::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: var(--drive-border);
        border-radius: 2px;
    }
}


/* Marketing Sections */


/* Neue Hero Section mit grünem Hintergrund */

.hero-section-new {
    position: relative;
    width: 100%;
    height: 600px;
    padding: 0;
    margin-top: 90px;
    margin-bottom: 0;
    overflow: visible;
}


/* Grüner Hintergrund mit Fadeout nach unten */

.hero-green-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(92, 236, 150, 0.37) 0%, /* Grün oben mit 37% Opacity */
    #1A1A1A 100%/* Schwarz unten */
    );
    border-radius: 24px;
    z-index: 0;
    /* Keine Border */
    border: none;
    outline: none;
}


/* CTA Button Wrapper (ragt in grüne Sektion hinein) */

.hero-cta-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 10;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #4CB074;
    box-shadow: 0px 1px 20px rgba(69, 176, 112, 0.64);
    border-radius: 8px;
    outline: 0.50px #5CEC96 solid;
    outline-offset: -0.50px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 20;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 2px 24px rgba(69, 176, 112, 0.8);
    text-decoration: none;
    color: white;
}

.hero-cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}


/* Content Wrapper für Screenshot und Info Card */

.hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 90px 40px 80px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}


/* Screenshot and Info Card Container */

.screenshot-info-container {
    position: relative;
    width: 765px;
    height: 529px;
    z-index: 1;
}


/* Screenshot Image (aus Konstantin) */

.screenshot-info-container figure {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 714px;
    height: 529px;
    left: 0px;
    top: 0px;
    z-index: 1;
}

.screenshot {
    position: absolute;
    width: 714px;
    height: 529px;
    left: 0px;
    top: 0px;
    border-radius: 21.31px;
    object-fit: contain;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Info Card (aus Konstantin) */

.info-card {
    position: absolute;
    width: 456px;
    height: 221px;
    left: 490px;
    top: 79px;
    background: transparent;
    border-radius: 16px;
    border: 2px solid #5CEC96;
    z-index: 10;
    box-shadow: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.info-card figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.info-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    margin: 0;
    padding: 0;
}

.info-card-title {
    position: absolute;
    left: 22px;
    top: 24px;
    color: white;
    font-size: 16px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
}

.info-card-subtitle {
    position: absolute;
    left: 22px;
    top: 45px;
    opacity: 0.50;
    color: white;
    font-size: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.score-circle {
    width: 37px;
    height: 37px;
    position: absolute;
    left: 209px;
    top: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid transparent;
    background-image: linear-gradient(#1A1A1A, #1A1A1A), linear-gradient(137deg, rgba(97, 224, 149, 1) 0%, rgba(236, 183, 92, 1) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.score-value {
    color: white;
    font-size: 10.67px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    position: relative;
}

.metric-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 200px;
}

.metric-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-label-main {
    color: white;
    font-size: 12px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
}

.metric-label-sub {
    opacity: 0.50;
    color: white;
    font-size: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 300;
}

.metric-value {
    opacity: 0.40;
    color: white;
    font-size: 12px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
}

.metric-row-1 {
    position: absolute;
    left: 22px;
    top: 79px;
    width: 200px;
}

.metric-row-2 {
    position: absolute;
    left: 22px;
    top: 128px;
    width: 200px;
}

.metric-row-3 {
    position: absolute;
    left: 22px;
    top: 163px;
    width: 200px;
}

.metric-row .metric-value {
    margin-left: auto;
}

.divider {
    position: absolute;
    width: 253px;
    height: 0px;
    border: 0.20px solid #9C9C9C;
    opacity: 0.40;
}

.divider-1 {
    left: 9px;
    top: 111px;
}

.divider-2 {
    left: 9px;
    top: 152px;
}

.gradient-overlay {
    position: absolute;
    width: 275px;
    height: 107px;
    left: 0px;
    top: 146px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, #1A1A1A 100%);
    border-radius: 0 0 16px 16px;
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.view-button {
    position: absolute;
    padding: 10px;
    left: 8px;
    top: 211px;
    background: #242424;
    border-radius: 8px;
    outline: 0.20px white solid;
    outline-offset: -0.20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
}

.view-button:hover {
    background: #2d2d2d;
    text-decoration: none;
}

.view-button-text {
    opacity: 0.50;
    color: white;
    font-size: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.arrow-icon {
    width: 14px;
    height: 14px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.arrow-icon svg {
    width: 100%;
    height: 100%;
}

.section-divider {
    height: 1px;
    background: var(--drive-border);
    margin: 60px 0;
    width: 100%;
}

.target-audience-box {
    background: #000000;
    border: 2px solid var(--drive-accent);
    border-radius: 12px;
    padding: 30px;
    margin: 0 auto 40px auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(92, 236, 150, 0.15);
}

.target-audience-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--drive-accent);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.target-audience-box p {
    font-size: 16px;
    color: var(--drive-text-light);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .section-divider {
        margin: 40px 0;
    }
    .target-audience-box {
        padding: 20px;
        margin-bottom: 30px;
    }
    .target-audience-box h3 {
        font-size: 20px;
    }
    .target-audience-box p {
        font-size: 14px;
    }
}


/* Mobile Responsive Styles für Hero Section */

@media (max-width: 1024px) {
    .hero-section-new {
        height: 600px;
        margin-top: 90px;
    }
    .hero-content-wrapper {
        padding: 90px 20px 60px;
    }
    .screenshot-info-container {
        width: 100%;
        max-width: 765px;
    }
}

@media (max-width: 767px) {
    .hero-section-new {
        height: 600px;
        margin-top: 90px;
    }
    .hero-cta-wrapper {
        top: 0;
        transform: translateX(-50%) translateY(-50%);
    }
    .hero-cta-button {
        padding: 14px 20px;
        font-size: 14px;
    }
    .hero-content-wrapper {
        padding: 90px 15px 40px;
    }
    .screenshot-info-container {
        width: 100%;
        height: auto;
    }
    .screenshot-info-container figure {
        position: relative;
        width: 100%;
        height: auto;
        left: auto;
        top: auto;
        margin: 0 0 20px 0;
        padding: 0;
    }
    .screenshot {
        width: 100%;
        height: auto;
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 20px;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
        image-rendering: auto;
        backface-visibility: hidden;
        transform: translateZ(0);
        will-change: transform;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .info-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    .info-card figure {
        width: 100%;
        height: auto;
    }
    .info-card img {
        width: 100%;
        height: auto;
    }
}

.services-section,
.benefits-section,
.features-section {
    margin-bottom: 50px;
    padding: 0 20px 50px 20px;
}

.services-section h2,
.benefits-section h2,
.features-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--drive-primary);
    margin-bottom: 30px;
    text-align: center;
}

.vs-consumer-llm-section {
    max-width: 1100px;
    margin: 0 auto 44px auto;
    padding: 12px 20px 8px 20px;
    box-sizing: border-box;
}

/* Nach „Warum Venture Diligence?“: etwas Luft vor dem ChatGPT-Vergleich */
.benefits-section + .vs-consumer-llm-section {
    margin-top: 4px;
}

.vs-consumer-llm-section > .section-eyebrow {
    text-align: center;
}

.vs-consumer-llm-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--drive-primary);
    margin: 0 auto 20px auto;
    text-align: center;
    line-height: 1.3;
    max-width: 920px;
}

.vs-consumer-llm-lead {
    font-size: 17px;
    color: var(--drive-text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 28px auto;
    line-height: 1.65;
}

.vs-consumer-llm-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .vs-consumer-llm-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.vs-consumer-card {
    border-radius: 16px;
    padding: 24px;
    background: rgba(38, 38, 38, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.vs-consumer-card-risk {
    border-color: rgba(255, 140, 105, 0.32);
}

.vs-consumer-card-vd {
    border-color: rgba(92, 236, 150, 0.32);
}

.vs-consumer-card h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 14px 0;
    line-height: 1.35;
}

.vs-consumer-card ul {
    margin: 0;
    padding-left: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.55;
}

.vs-consumer-card li + li {
    margin-top: 10px;
}

.vs-consumer-llm-footnote {
    margin: 24px auto 0 auto;
    max-width: 800px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.features-intro {
    font-size: 18px;
    color: var(--drive-text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .features-intro {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
}

.inhouse-section {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 20px 50px 20px;
}

.inhouse-content {
    background: linear-gradient(135deg, rgba(92, 236, 150, 0.14) 0%, rgba(38, 38, 38, 0.95) 55%, #1A1A1A 100%);
    border: 1px solid rgba(92, 236, 150, 0.28);
    border-radius: 24px;
    padding: 40px;
}

.inhouse-copy {
    max-width: 880px;
    margin-bottom: 30px;
}

.section-eyebrow {
    color: var(--drive-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.inhouse-copy h2 {
    color: var(--drive-primary);
    font-size: 28px;
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.inhouse-copy p:not(.section-eyebrow) {
    color: var(--drive-text-light);
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
}

.inhouse-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

.inhouse-card {
    background: rgba(38, 38, 38, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
}

.inhouse-card h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.inhouse-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 900px) {
    .inhouse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .inhouse-section {
        margin-bottom: 30px;
        padding: 0 10px 30px 10px;
    }

    .inhouse-content {
        padding: 28px 20px;
    }

    .inhouse-copy h2 {
        font-size: 22px;
    }

    .inhouse-copy p:not(.section-eyebrow) {
        font-size: 15px;
    }
}

.services-grid,
.benefits-grid,
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card,
.benefit-card,
.feature-card {
    background: #262626;
    border-radius: 16px;
    outline: 1px #414141 solid;
    outline-offset: -1px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.3s ease;
}


/* Icon und Titel nebeneinander ausrichten - beide in einer Zeile */

.card-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 0;
}

.card-header-row .feature-icon,
.card-header-row .feature-icon-small {
    flex-shrink: 0;
    margin: 0;
}

.card-header-row h3 {
    flex: 1;
    margin: 0;
    display: flex;
    align-items: center;
}


/* Alte Regeln entfernt - verwenden jetzt card-header-row */

.service-card:hover,
.benefit-card:hover,
.feature-card:hover {
    outline-color: #5CEC96;
    box-shadow: 0 4px 12px rgba(92, 236, 150, 0.2);
    transform: translateY(-2px);
}


/* Feature Icon Styles (wie in Konstantin) */

.feature-icon {
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-icon-small {
    width: 16px;
    height: 16px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-icon-small svg {
    width: 100%;
    height: 100%;
}


/* Feature Title Styles (wie in Konstantin) */

.feature-title {
    align-self: stretch;
    position: relative;
}

.feature-title-text {
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
    margin: 0;
}


/* Feature Description Styles (wie in Konstantin) */

.feature-description {
    align-self: stretch;
    position: relative;
}

.feature-description-text {
    color: rgba(255, 254.99, 254.98, 0.60);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 21.12px;
    word-wrap: break-word;
    margin: 0;
}

.service-card h3,
.benefit-card h3,
.feature-card h3 {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: white;
    line-height: 24px;
    margin: 0;
    margin-bottom: 0;
}

.service-card p,
.benefit-card p,
.feature-card p {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.60);
    line-height: 21.12px;
    margin: 0;
}

@media (min-width: 768px) {
    .services-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Mobile Responsive */

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .pricing-box-content {
        padding: 18px;
    }
    .pricing-box-content h3 {
        font-size: 18px;
    }
    .pricing-box-content .price {
        font-size: 28px;
    }
    .checkout-sidebar {
        max-height: 80vh;
    }
    .checkout-content {
        padding: 20px;
    }
    .checkout-header {
        padding: 16px 20px;
    }
    .checkout-header h3 {
        font-size: 18px;
    }
    .services-section h2,
    .benefits-section h2,
    .features-section h2,
    .vs-consumer-llm-section h2,
    .blog-section-title {
        font-size: 22px !important;
    }
    .services-section,
    .benefits-section,
    .features-section,
    .home-cta-section {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .vs-consumer-llm-section {
        margin-bottom: 26px;
        padding: 14px 10px 16px 10px;
    }
    .services-section h2,
    .benefits-section h2,
    .features-section h2,
    .vs-consumer-llm-section h2 {
        font-size: 22px !important;
        margin-bottom: 20px;
    }
    .service-card,
    .benefit-card,
    .feature-card {
        padding: 25px;
    }
    .service-card h3,
    .benefit-card h3,
    .feature-card h3 {
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        line-height: 24px;
    }
    .service-card p,
    .benefit-card p,
    .feature-card p {
        font-size: 13px;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        line-height: 21.12px;
        color: rgba(255, 255, 255, 0.60);
    }
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    .feature-icon-small {
        width: 16px;
        height: 16px;
    }
    .vs-consumer-llm-lead {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 2px;
    }
    .vs-consumer-llm-grid {
        gap: 14px;
    }
    .vs-consumer-card {
        padding: 18px 14px;
    }
    .vs-consumer-card ul {
        font-size: 13px;
        line-height: 1.5;
    }
    .vs-consumer-llm-footnote {
        margin-top: 18px;
        font-size: 13px;
        padding: 0 4px;
    }
}


/* Form Section Title */

.form-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--drive-primary);
    margin: 50px 0 30px 0;
    text-align: center;
    width: 100%;
}

@media (max-width: 767px) {
    .form-section-title {
        font-size: 22px;
        margin: 30px 0 20px 0;
    }
}


/* CTA Box Centered - Smaller Version */

.cta-box-centered {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px 25px;
    background: linear-gradient(180deg, rgba(92, 236, 150, 0.37) 0%, /* Grün oben mit 37% Opacity */
    #1A1A1A 100%/* Schwarz unten */
    );
    border: none;
    border-radius: 24px;
    box-shadow: none;
}

.cta-box-centered h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.cta-box-centered p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.home-cta-section {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.vs-consumer-llm-section + .home-cta-section {
    margin-top: 12px;
}

/* Demo CTA: klare Stufen - Intro, Kennenlern-Streifen, grüner Haupt-CTA */
.demo-cta-card {
    position: relative;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(92, 236, 150, 0.16) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
    background: linear-gradient(168deg, #1a1c1a 0%, #111 52%, #0c0c0c 100%) !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

.demo-cta-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(92, 236, 150, 0.55), transparent);
    pointer-events: none;
}

.demo-cta-intro {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.demo-cta-intro h3 {
    margin: 0 0 12px 0;
    text-align: center;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #fff;
}

.demo-cta-lead {
    margin: 0 auto;
    max-width: 38rem;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.demo-cta-meet {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px 28px;
    margin-bottom: 26px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(92, 236, 150, 0.06);
    border: 1px solid rgba(92, 236, 150, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.demo-cta-contact-line {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.4;
    color: #c8f5dc;
    letter-spacing: 0.01em;
}

.demo-cta-visual {
    flex-shrink: 0;
    padding: 3px;
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(92, 236, 150, 0.35), rgba(92, 236, 150, 0.06));
}

.demo-cta-portrait {
    display: block;
    width: 112px;
    height: 112px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    filter: grayscale(80%) contrast(1.06);
}

/* Primär-CTA: volle Fläche, kräftig grün (über blog.css .cta-button) */
.demo-cta-card .demo-cta-primary.cta-button {
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 28px;
    min-height: 58px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: #5CEC96 !important;
    color: #0d0f0d !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 10px 32px rgba(92, 236, 150, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.demo-cta-card .demo-cta-primary.cta-button:hover,
.demo-cta-card .demo-cta-primary.cta-button:focus {
    background: #7af0aa !important;
    color: #050505 !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    outline: none !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(92, 236, 150, 0.4);
}

.demo-cta-card .demo-cta-primary.cta-button:active {
    transform: translateY(0);
}

.home-cta-section .cta-box-wider {
    margin-top: 12px !important;
    margin-bottom: 20px !important;
}


/* Functions Section */

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

.functions-section>p {
    text-align: center;
    font-size: 18px;
    color: var(--drive-text-light);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


/* CTA Box Wider - Breiter, niedriger, mittig */

.cta-box-wider {
    max-width: 900px;
    width: 100%;
    margin: 80px auto 10px auto !important;
    padding: 25px 40px;
    display: block;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(92, 236, 150, 0.37) 0%, /* Grün oben mit 37% Opacity */
    #1A1A1A 100%/* Schwarz unten */
    );
    border: none;
    border-radius: 24px;
    box-shadow: none;
}

.cta-box-wider h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.cta-box-wider p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .cta-box-wider {
        max-width: 95%;
        padding: 25px 30px;
    }
}

@media (max-width: 767px) {
    .functions-section {
        padding: 0 0 15px 0;
    }
    .cta-box-centered {
        margin: 25px auto;
        padding: 25px 10px;
    }
    .cta-box-centered h3 {
        font-size: 20px;
    }
    .cta-box-centered p {
        font-size: 14px;
    }
    .cta-box-wider {
        max-width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
        margin-top: 60px !important;
        margin-bottom: 10px !important;
        padding: 20px 10px;
    }
    .cta-box-wider h3 {
        font-size: 20px;
    }
    .cta-box-wider p {
        font-size: 14px;
    }
    .demo-cta-intro {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .demo-cta-intro h3 {
        text-align: center;
        font-size: 21px;
    }
    .demo-cta-lead {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }
    .demo-cta-meet {
        flex-direction: column;
        text-align: center;
        padding: 16px 14px;
        margin-bottom: 22px;
    }
    .demo-cta-contact-line {
        text-align: center;
    }
    .demo-cta-portrait {
        width: 96px;
        height: 96px;
    }
    .demo-cta-card .demo-cta-primary.cta-button {
        max-width: none;
    }
}

/* Demo CTA: nach .cta-box-wider (Flex + Abstande) */
.demo-cta-card.cta-box-wider {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.demo-cta-card.cta-box-wider .demo-cta-primary.cta-button {
    align-self: center;
    margin-top: 4px;
}

/* Übersteuert .cta-box-wider h3 / p für die Demo-Karte */
.demo-cta-card.cta-box-wider .demo-cta-intro h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    margin: 0 0 12px 0;
    text-align: center;
}

.demo-cta-card.cta-box-wider .demo-cta-lead {
    margin: 0 auto;
    margin-bottom: 0;
    text-align: center;
}