/* ============================================================================
   DIY (Operations-Plattform) Landingpage
   SaaS-Style Design für Zeitarbeit Operations
   ============================================================================ */

/* ============================================
   DIY THEME - Gelbe Akzentfarbe (Gold)
============================================ */
:root {
    --diy-accent: #c9a227;
    --diy-accent-light: #e8d48a;
    --diy-accent-dark: #a88720;
    --diy-accent-bg: rgba(201, 162, 39, 0.1);
    --diy-accent-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
    --diy-accent-shadow-hover: 0 6px 20px rgba(201, 162, 39, 0.4);

    --diy-black: #1a1a1a;
    --diy-dark: #2d2d2d;
    --diy-gray: #6c757d;
    --diy-blue-bg: #f0f4f8;
}

body {
    --accent: var(--diy-accent);
    --accent-light: var(--diy-accent-light);
    --accent-dark: var(--diy-accent-dark);
    --accent-shadow: var(--diy-accent-shadow);
    --accent-shadow-hover: var(--diy-accent-shadow-hover);
    --gray-900: var(--diy-black);
    --gray-800: var(--diy-dark);
}

/* ============================================
   DIY HEADER - Schwarzer Hintergrund
============================================ */
.header {
    background: var(--diy-black);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
}

.header-outline-btn:hover {
    color: var(--diy-black);
}

.header-cta-btn {
    background: var(--diy-accent);
}

.header-cta-btn:hover {
    background: var(--diy-accent-light);
    color: var(--diy-black);
}

/* ============================================
   DIY MOBILE NAVIGATION - Schwarzer Hintergrund
============================================ */
.mobile-nav {
    background: var(--diy-black);
}

.mobile-nav-header {
    border-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
    background: rgba(201, 162, 39, 0.1);
    color: var(--diy-accent);
}

.quick-action-btn:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--diy-accent);
    color: var(--diy-accent);
}

.mobile-nav-cta .btn-primary {
    background: var(--diy-accent);
    color: var(--diy-black);
}

.mobile-nav-cta .btn-primary:hover {
    background: var(--diy-accent-light);
}

.mobile-top-bar {
    background: #111;
}

.mobile-top-btn-cta {
    background: var(--diy-accent) !important;
    color: var(--diy-black) !important;
}

/* ============================================
   DIY FOOTER - Schwarzer Hintergrund
============================================ */
.footer {
    background: var(--diy-black);
}

.footer-social a:hover {
    background: var(--diy-accent);
    color: var(--diy-black);
}

.footer-contact-item i,
.footer-contact-item svg {
    color: var(--diy-accent);
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   BUTTON OVERRIDES
============================================ */
.btn-primary {
    background: var(--diy-accent);
    color: var(--diy-black);
    box-shadow: var(--diy-accent-shadow);
}

.btn-primary:hover {
    background: var(--diy-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--diy-accent-shadow-hover);
    color: var(--diy-black);
}

/* ============================================
   SECTION LABEL (wiederverwendbar)
============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--diy-accent-bg);
    color: var(--diy-accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-label i,
.section-label svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   HERO SECTION (Split-Layout)
============================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--diy-black) 0%, var(--diy-dark) 100%);
    color: var(--white);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--diy-accent);
    color: var(--diy-black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero h1 span {
    color: var(--diy-accent);
}

.hero-subtitle {
    font-size: 19px;
    opacity: 0.85;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--diy-black);
    border-color: var(--white);
}

.hero-screenshot {
    position: relative;
}

/* ============================================
   SCREENSHOT FRAME (Browser-Mockup)
============================================ */
.diy-screenshot-frame {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.screenshot-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--gray-100, #f3f4f6);
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
}

.screenshot-browser-bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300, #d1d5db);
}

.screenshot-browser-bar span:first-child { background: #ef4444; }
.screenshot-browser-bar span:nth-child(2) { background: #f59e0b; }
.screenshot-browser-bar span:nth-child(3) { background: #22c55e; }

.screenshot-content img {
    display: block;
    width: 100%;
    height: auto;
}

.screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 380px;
    background: linear-gradient(135deg, var(--gray-100, #f3f4f6) 0%, var(--gray-50, #f9fafb) 100%);
    color: var(--gray-400, #9ca3af);
    font-size: 16px;
    font-weight: 500;
}

.screenshot-placeholder i,
.screenshot-placeholder svg {
    color: var(--gray-300, #d1d5db);
}

.diy-screenshot-frame--dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.diy-screenshot-frame--dark .screenshot-browser-bar {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.diy-screenshot-frame--dark .screenshot-browser-bar span {
    opacity: 0.5;
}

.diy-screenshot-frame--dark .screenshot-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    color: rgba(255, 255, 255, 0.35);
}

.diy-screenshot-frame--dark .screenshot-placeholder i,
.diy-screenshot-frame--dark .screenshot-placeholder svg {
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   PROBLEM SECTION
============================================ */
.diy-problem {
    padding: var(--section-padding);
    background: var(--white);
}

.diy-problem .section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.diy-problem .section-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--diy-black);
    line-height: 1.3;
}

.diy-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.diy-pain-card {
    background: var(--white);
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s;
}

.diy-pain-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.pain-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--diy-accent-bg);
    color: var(--diy-accent);
    margin-bottom: 20px;
}

.diy-pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--diy-black);
    margin-bottom: 10px;
}

.diy-pain-card p {
    font-size: 15px;
    color: var(--diy-gray);
    line-height: 1.6;
}

/* ============================================
   SOLUTION SECTION
============================================ */
.diy-solution {
    padding: var(--section-padding);
    background: var(--gray-50, #f9fafb);
}

.diy-solution .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.diy-solution .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--diy-black);
    margin-bottom: 16px;
}

.diy-solution .section-subtitle {
    font-size: 18px;
    color: var(--diy-gray);
    line-height: 1.6;
}

.diy-solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.diy-solution-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--gray-200, #e5e7eb);
    transition: all 0.2s;
}

.diy-solution-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--diy-accent-bg);
    color: var(--diy-accent);
    margin-bottom: 20px;
}

.diy-solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--diy-black);
    margin-bottom: 10px;
}

.diy-solution-card p {
    font-size: 15px;
    color: var(--diy-gray);
    line-height: 1.6;
}

/* ============================================
   FEATURE SPLIT LAYOUT (Sektionen 4-7)
============================================ */
.diy-feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.diy-feature-split.reverse .diy-feature-visual {
    order: -1;
}

.diy-feature-content .section-label {
    margin-bottom: 16px;
}

.diy-feature-content h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--diy-black);
    line-height: 1.25;
    margin-bottom: 16px;
}

.diy-feature-content > p {
    font-size: 17px;
    color: var(--diy-gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Feature Checklist */
.diy-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.diy-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--diy-black);
    line-height: 1.5;
}

.diy-feature-list li i,
.diy-feature-list li svg {
    color: var(--diy-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Light variant for dark sections */
.diy-feature-list--light li {
    color: rgba(255, 255, 255, 0.9);
}

.diy-feature-list--light li i,
.diy-feature-list--light li svg {
    color: var(--diy-accent);
}

/* ============================================
   AUTO-PLANNING SECTION (Kernfunktion)
============================================ */
.diy-auto-planning {
    padding: var(--section-padding);
    background: var(--white);
}

/* ============================================
   SELF-SERVICE SECTION
============================================ */
.diy-self-service {
    padding: var(--section-padding);
    background: var(--diy-blue-bg);
}

/* ============================================
   PROJECTS SECTION
============================================ */
.diy-projects {
    padding: var(--section-padding);
    background: var(--white);
}

/* ============================================
   INTEGRATION SECTION (Dark)
============================================ */
.diy-integration {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: var(--white);
}

.diy-integration .section-label {
    background: rgba(201, 162, 39, 0.15);
    color: var(--diy-accent-light);
}

.diy-integration .diy-feature-content h2 {
    color: var(--white);
}

.diy-integration .diy-feature-content > p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   VALUE / ROI SECTION
============================================ */
.diy-value {
    padding: var(--section-padding);
    background: var(--white);
}

.diy-value .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.diy-value .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--diy-black);
    margin-bottom: 16px;
}

.diy-value .section-subtitle {
    font-size: 17px;
    color: var(--diy-gray);
    line-height: 1.6;
}

.diy-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.diy-stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200, #e5e7eb);
    border-top: 4px solid var(--diy-accent);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--diy-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--diy-black);
    margin-bottom: 12px;
}

.diy-stat-card p {
    font-size: 15px;
    color: var(--diy-gray);
    line-height: 1.6;
}

/* ============================================
   DEMO CTA SECTION
============================================ */
.diy-demo-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: var(--white);
    text-align: center;
}

.diy-demo-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.diy-demo-cta > .container > p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.diy-demo-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.diy-demo-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.diy-demo-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--diy-black);
    border-color: var(--white);
}

.diy-demo-cta .guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.diy-demo-cta .guarantee-badge i,
.diy-demo-cta .guarantee-badge svg {
    color: var(--diy-accent);
}

/* ============================================
   FAQ SECTION (aus faq-section-schema.njk)
============================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--gray-50, #f9fafb);
}

.faq-section .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.faq-section .section-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--diy-black);
}

.faq-section .section-subtitle {
    font-size: 17px;
    color: var(--diy-gray);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--diy-black);
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--gray-50, #f9fafb);
}

.faq-question i,
.faq-question svg {
    color: var(--diy-accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i,
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--diy-gray);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer[hidden] {
    display: none;
}

.faq-more-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200, #e5e7eb);
}

/* ============================================
   RESPONSIVE: 992px (Tablet)
============================================ */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-screenshot {
        max-width: 560px;
    }

    .diy-feature-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .diy-feature-split.reverse .diy-feature-visual {
        order: 0;
    }

    .diy-pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diy-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diy-stat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ============================================
   RESPONSIVE: 768px (Mobile)
============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .diy-pain-grid {
        grid-template-columns: 1fr;
    }

    .diy-solution-grid {
        grid-template-columns: 1fr;
    }

    .diy-stat-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 44px;
    }

    .diy-feature-content h2 {
        font-size: 26px;
    }

    .screenshot-placeholder {
        min-height: 250px;
    }

    .diy-feature-content .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .diy-demo-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .diy-demo-cta-buttons .btn-primary,
    .diy-demo-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE: 480px (Small Mobile)
============================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 40px;
    }

    .diy-pain-card,
    .diy-solution-card {
        padding: 24px 20px;
    }

    .diy-stat-card {
        padding: 32px 24px;
    }
}

/* ============================================
   PREISMODELLE
============================================ */
.diy-pricing {
    padding: var(--section-padding, 80px 0);
    background: #f9fafb;
}

.diy-pricing .section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.diy-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
}

.diy-pricing-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.diy-pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.diy-pricing-card--featured {
    border-color: var(--diy-accent);
    border-width: 2px;
    box-shadow: var(--diy-accent-shadow);
}

.diy-pricing-card--featured:hover {
    box-shadow: 0 16px 48px rgba(201, 162, 39, 0.35);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--diy-accent);
    color: var(--diy-black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 30px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pricing-tier-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--diy-accent);
    margin-bottom: 6px;
}

.pricing-tier-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--diy-black);
    margin: 0 0 8px;
    line-height: 1.2;
}

.pricing-tier-tagline {
    font-size: 14px;
    color: var(--diy-gray);
    line-height: 1.55;
    margin-bottom: 24px;
    min-height: 48px;
}

.pricing-tier-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--diy-black);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-tier-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--diy-gray);
    display: block;
    margin-top: 4px;
}

.diy-pricing-card .diy-feature-list {
    margin-bottom: 28px;
    flex-grow: 1;
}

.diy-pricing-card .diy-feature-list li {
    font-size: 14px;
    padding: 6px 0;
    gap: 8px;
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn-primary,
.pricing-cta .btn-secondary,
.pricing-cta .btn-outline {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* btn-outline braucht eigene Basis-Stile, da base.css diese nicht setzt */
.pricing-cta .btn-outline {
    background: transparent;
    border: 2px solid var(--diy-accent);
    color: var(--diy-accent);
}

.pricing-cta .btn-outline:hover {
    background: var(--diy-accent);
    color: var(--diy-black);
}

/* Besetzungsgarantie-Callout */
.pricing-guarantee {
    margin: 0 0 24px;
    padding: 14px 16px;
    background: var(--diy-accent-bg);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pricing-guarantee-icon {
    color: var(--diy-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-guarantee-text {
    flex: 1;
}

.pricing-guarantee-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--diy-black);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.pricing-guarantee-title .pricing-optional-pill {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--diy-accent-dark);
    background: rgba(201, 162, 39, 0.15);
    padding: 1px 7px;
    border-radius: 20px;
}

.pricing-guarantee-desc {
    font-size: 12px;
    color: var(--diy-gray);
    line-height: 1.5;
    margin: 0;
}

.pricing-calc-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--diy-accent-dark);
    text-decoration: none;
    transition: color 0.15s;
}

.pricing-calc-link:hover {
    color: var(--diy-accent);
}

.pricing-trust-note {
    font-size: 12px;
    color: var(--diy-gray);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .diy-pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .diy-pricing-card {
        padding: 28px 22px;
    }

    .pricing-tier-tagline {
        min-height: auto;
    }
}

/* ============================================
   PREISRECHNER
============================================ */
.diy-calculator {
    padding: var(--section-padding, 80px 0);
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.diy-calculator .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px;
}

/* Zweispaltiges Layout: Inputs | Ergebnis */
.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Panels */
.calc-inputs-panel,
.calc-result-panel {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 36px 32px;
}

.calc-result-panel {
    background: var(--diy-black, #1a1a1a);
    border-color: var(--diy-black, #1a1a1a);
    color: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Eingabe-Felder */
.calc-field {
    margin-bottom: 28px;
}

.calc-field:last-child {
    margin-bottom: 0;
}

.calc-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--diy-black);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.calc-field-hint {
    font-size: 12px;
    color: var(--diy-gray);
    margin: 8px 0 0;
    line-height: 1.5;
}

/* Service-Level-Tabs */
.calc-level-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    background: #e5e7eb;
    border-radius: 12px;
    padding: 5px;
}

.calc-tab {
    background: transparent;
    border: none;
    border-radius: 9px;
    padding: 9px 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--diy-gray);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.calc-tab.active {
    background: var(--diy-accent);
    color: var(--diy-black);
    box-shadow: 0 2px 6px rgba(201, 162, 39, 0.35);
}

.calc-tab:not(.active):hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--diy-black);
}

/* Stepper */
.calc-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.calc-step-btn {
    background: transparent;
    border: none;
    padding: 0 16px;
    font-size: 20px;
    font-weight: 400;
    color: var(--diy-gray);
    cursor: pointer;
    height: 48px;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.calc-step-btn:hover {
    background: var(--diy-accent-bg);
    color: var(--diy-accent-dark);
}

.calc-stepper input[type="number"] {
    flex: 1;
    border: none;
    border-left: 1px solid #d1d5db;
    border-right: 1px solid #d1d5db;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--diy-black);
    padding: 0 8px;
    height: 48px;
    -moz-appearance: textfield;
    background: #fff;
}

.calc-stepper input[type="number"]::-webkit-inner-spin-button,
.calc-stepper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Stundensatz-Eingabe */
.calc-rate-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.calc-rate-wrapper input[type="number"] {
    flex: 1;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--diy-black);
    padding: 12px 16px;
    -moz-appearance: textfield;
    background: transparent;
}

.calc-rate-wrapper input[type="number"]::-webkit-inner-spin-button,
.calc-rate-wrapper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.calc-rate-unit {
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--diy-gray);
    background: #f3f4f6;
    border-left: 1px solid #d1d5db;
    height: 48px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Ergebnis-Bereich */
.calc-result-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.calc-result-subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--diy-accent);
    margin: 0 0 20px;
}

/* Free */
.calc-result-free .calc-result-amount {
    font-size: 52px;
    font-weight: 900;
    color: var(--diy-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.calc-result-free .calc-result-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
}

/* Breakdown Tabelle */
.calc-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.calc-breakdown-row:last-child {
    border-bottom: none;
}

.calc-breakdown-row small {
    font-size: 11px;
    opacity: 0.65;
}

.calc-breakdown-row > span:last-child {
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.calc-breakdown-sub {
    background: rgba(255, 255, 255, 0.06);
    font-weight: 600;
    color: #fff !important;
}

.calc-breakdown-sub > span:first-child {
    color: #fff;
}

/* Gesamt */
.calc-result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.calc-total-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--diy-accent) !important;
    white-space: nowrap;
}

/* Kontakt-Ergebnis (Full / Enterprise) */
.calc-result-contact {
    text-align: center;
    padding: 16px 0;
}

.calc-contact-icon {
    color: var(--diy-accent);
    margin-bottom: 16px;
}

.calc-result-contact .calc-result-subtitle {
    text-align: center;
}

/* Hinweistext */
.calc-result-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 24px;
}

/* CTA im Ergebnis */
.calc-result-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    background: var(--diy-accent);
    color: var(--diy-black);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-top: 4px;
}

.calc-result-cta:hover {
    background: var(--diy-accent-dark);
    color: var(--diy-black);
    transform: translateY(-2px);
}

/* Rechtlicher Hinweis */
.calc-legal-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--diy-gray);
    margin: 24px auto 0;
    max-width: 780px;
    text-align: center;
    justify-content: center;
    line-height: 1.6;
}

.calc-legal-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

.calc-hybrid-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.55;
    margin: 14px 0 0;
    text-align: center;
}

/* Mindestbuchungs-Badge im Hybrid-Ergebnis */
.calc-min-booking {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--diy-accent);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 20px;
    padding: 5px 12px;
    margin-bottom: 16px;
}

.calc-min-booking strong {
    font-weight: 700;
}

/* Mehrzeiliger Hint mit strong */
.calc-field-hint strong {
    color: var(--diy-black);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .calc-result-panel {
        min-height: auto;
    }

    .calc-level-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
}
