/* Extracted from lohnabrechnung-gastronomie.php. Edit here, not in PHP. */

/* ============================================================
   GASTRONOMIE PAGE, gast- prefix
   ============================================================ */

/* Hero */
.gast-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #162d4a 60%, #0f2035 100%);
    padding: 90px 0 80px;
    overflow: hidden;
    position: relative;
}
.gast-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(16,185,129,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.gast-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.gast-hero-content {
    color: #fff;
}
.gast-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.35);
    color: #6ee7b7;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.gast-hero-eyebrow svg {
    width: 14px; height: 14px;
    fill: #6ee7b7;
}
.gast-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
}
.gast-hero h1 .gast-highlight {
    color: #34d399;
}
.gast-hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.75;
    margin: 0 0 28px;
    max-width: 500px;
}
.gast-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.gast-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
}
.gast-trust-chip .gast-chip-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}
.gast-hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.gast-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.gast-btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.gast-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s, color 0.2s;
}
.gast-btn-outline:hover {
    border-color: #10b981;
    color: #6ee7b7;
    text-decoration: none;
}

/* Hero Visual, Schicht-Dienstplan SVG wrapper */
.gast-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gast-hero-svg {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* Stats Bar */
.gast-stats-bar {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #047857 100%);
    padding: 0;
}
.gast-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.gast-stat-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.18);
    color: #fff;
}
.gast-stat-item:last-child {
    border-right: none;
}
.gast-stat-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}
.gast-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    line-height: 1.4;
}

/* Problem Section */
.gast-problem {
    padding: 90px 0;
    background: #fff;
}
.gast-problem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gast-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}
.gast-problem-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 20px;
    line-height: 1.3;
}
.gast-problem-text p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 16px;
}
.gast-problem-text p:last-child {
    margin-bottom: 0;
}
.gast-problem-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gast-problem-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 22px 22px 68px;
    position: relative;
}
.gast-problem-card:hover {
    border-color: #10b981;
    box-shadow: 0 4px 16px rgba(16,185,129,0.1);
    transition: all 0.2s;
}
.gast-problem-icon {
    position: absolute;
    left: 20px;
    top: 22px;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.gast-problem-icon.red { background: #fee2e2; }
.gast-problem-icon.orange { background: #fef3c7; }
.gast-problem-icon.blue { background: #dbeafe; }
.gast-problem-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px;
}
.gast-problem-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Section labels */
.gast-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #10b981;
    margin-bottom: 10px;
}

/* Services Section */
.gast-services {
    padding: 90px 0;
    background: #f0f9ff;
}
.gast-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gast-services-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.gast-services-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 14px;
    line-height: 1.3;
}
.gast-services-header p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}
.gast-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.gast-service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.gast-service-card:hover {
    border-color: #10b981;
    box-shadow: 0 6px 24px rgba(16,185,129,0.12);
}
.gast-service-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    background: #ecfdf5;
}
.gast-service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px;
    line-height: 1.4;
}
.gast-service-card p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0 0 14px;
}
.gast-service-tag {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid #a7f3d0;
}

/* Legal Highlights Section */
.gast-legal {
    padding: 90px 0;
    background: #1e3a5f;
    position: relative;
    overflow: hidden;
}
.gast-legal::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.gast-legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gast-legal-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.gast-legal-header .gast-section-label {
    color: #6ee7b7;
}
.gast-legal-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.3;
}
.gast-legal-header p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}
.gast-legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gast-legal-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
}
.gast-legal-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(16,185,129,0.4);
    transition: all 0.2s;
}
.gast-legal-badge {
    display: inline-block;
    background: rgba(16,185,129,0.18);
    color: #6ee7b7;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.gast-legal-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 12px;
    line-height: 1.4;
}
.gast-legal-card p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0 0 16px;
}
.gast-legal-rates {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gast-legal-rates li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(16,185,129,0.08);
    border-radius: 8px;
    padding: 7px 12px;
}
.gast-legal-rates .gast-rate-label {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
}
.gast-legal-rates .gast-rate-value {
    font-size: 0.8rem;
    color: #34d399;
    font-weight: 700;
}

/* Prozess Section, Schicht-Flow */
.gast-process {
    padding: 90px 0;
    background: #fff;
}
.gast-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gast-process-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.gast-process-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 14px;
    line-height: 1.3;
}
.gast-process-header p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}
.gast-process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.gast-process-flow::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
    z-index: 0;
}
.gast-process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.gast-process-num {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: #ecfdf5;
    border: 3px solid #10b981;
    color: #059669;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px #fff;
}
.gast-process-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}
.gast-process-step p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.gast-faq {
    padding: 90px 0;
    background: #f8fafc;
}
.gast-faq-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}
.gast-faq-header {
    text-align: center;
    margin-bottom: 50px;
}
.gast-faq-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 14px;
    line-height: 1.3;
}
.gast-faq-header p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}
.gast-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gast-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.gast-faq-item.open {
    border-color: #10b981;
}
.gast-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}
.gast-faq-question span:first-child {
    font-size: 0.975rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.45;
}
.gast-faq-icon {
    width: 28px; height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.gast-faq-item.open .gast-faq-icon {
    background: #10b981;
    color: #fff;
    transform: rotate(45deg);
}
.gast-faq-answer {
    display: none;
    padding: 0 24px 22px;
}
.gast-faq-item.open .gast-faq-answer {
    display: block;
}
.gast-faq-answer p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}
.gast-faq-answer p + p {
    margin-top: 12px;
}

/* CTA Section */
.gast-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #047857 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gast-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.gast-cta::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.gast-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.gast-cta h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.25;
}
.gast-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    margin: 0 0 36px;
}
.gast-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.gast-btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #059669;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.gast-btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    color: #047857;
    text-decoration: none;
}
.gast-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.55);
    transition: border-color 0.2s, background 0.2s;
}
.gast-btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}
.gast-cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.gast-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
}
.gast-cta-trust-item svg {
    width: 16px; height: 16px;
    fill: rgba(255,255,255,0.8);
}

/* Related Topics */
.gast-related {
    padding: 70px 0;
    background: #fff;
}
.gast-related-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gast-related h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin: 0 0 32px;
}
.gast-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.gast-related-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: block;
}
.gast-related-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(37,99,235,0.1);
    text-decoration: none;
}
.gast-related-card-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 6px;
}
.gast-related-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .gast-services-grid { grid-template-columns: repeat(2, 1fr); }
    .gast-legal-grid { grid-template-columns: 1fr 1fr; }
    .gast-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .gast-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .gast-hero-subtitle { max-width: 100%; }
    .gast-trust-chips { justify-content: center; }
    .gast-hero-cta { justify-content: center; }
    .gast-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .gast-stat-item:nth-child(2) { border-right: none; }
    .gast-problem-grid { grid-template-columns: 1fr; gap: 40px; }
    .gast-services-grid { grid-template-columns: 1fr; }
    .gast-legal-grid { grid-template-columns: 1fr; }
    .gast-process-flow {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .gast-process-flow::before { display: none; }
    .gast-process-num { box-shadow: none; }
    .gast-related-grid { grid-template-columns: 1fr 1fr; }
    .gast-cta-buttons { flex-direction: column; align-items: center; }
    .gast-cta-trust { gap: 16px; }
}

@media (max-width: 480px) {
    .gast-stats-inner { grid-template-columns: 1fr 1fr; }
    .gast-related-grid { grid-template-columns: 1fr; }
}
