/* Extracted from arbeitszeugnis-generator.php. Edit here, not in PHP. */

/* ============================================================
   ARBEITSZEUGNIS-GENERATOR PAGE  |  Prefix: azg-
   Hero: Light Blue (#f0f9ff → #e0f2fe)  |  Accent: #2563eb
   ============================================================ */

/* Hero */
.azg-hero {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 5rem 0 3rem;
}
.azg-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.azg-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}
.azg-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.azg-hero h1 span { color: #2563eb; }
.azg-hero p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.azg-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}
.azg-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}
.azg-pill svg { width: 14px; height: 14px; }
.azg-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.azg-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.azg-hero-visual svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(37,99,235,0.12));
}

/* USP-Strip */
.azg-strip {
    background: #1e3a5f;
    padding: 1.5rem 0;
}
.azg-strip-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.azg-strip-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}
.azg-strip-item svg { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; }

/* Features */
.azg-features {
    padding: 4.5rem 0;
    background: #fff;
}
.azg-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.azg-feature-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.azg-feature-card:hover { box-shadow: 0 8px 24px rgba(37,99,235,0.1); transform: translateY(-3px); }
.azg-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.azg-feature-icon svg { width: 28px; height: 28px; color: #2563eb; }
.azg-feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #1f2937; margin-bottom: 0.6rem; }
.azg-feature-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.6; margin: 0; }

/* Tool Embed */
.azg-tool-section {
    padding: 4rem 0 5rem;
    background: #f8fafc;
}
.azg-tool-header {
    text-align: center;
    margin-bottom: 2rem;
}
.azg-tool-header h2 { font-size: 2rem; font-weight: 800; color: #1f2937; }
.azg-tool-header p { color: #6b7280; font-size: 1.05rem; margin-top: 0.5rem; }
.azg-tool-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.azg-iframe-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    background: #fff;
    min-height: 1100px;
}
.azg-iframe-container iframe {
    width: 100%;
    border: none;
    display: block;
    min-height: 1100px;
}
.azg-tool-note {
    text-align: center;
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 0.85rem;
}
.azg-tool-note a { color: #6b7280; text-decoration: underline; }

/* How-it-works */
.azg-steps {
    padding: 4.5rem 0;
    background: #fff;
}
.azg-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}
.azg-steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    z-index: 0;
}
.azg-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.azg-step-num {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.azg-step h3 { font-size: 1rem; font-weight: 700; color: #1f2937; margin-bottom: 0.5rem; }
.azg-step p { font-size: 0.88rem; color: #6b7280; line-height: 1.6; margin: 0; }

/* FAQ */
.azg-faq {
    padding: 4.5rem 0;
    background: #f8fafc;
}
.azg-faq-grid {
    max-width: 800px;
    margin: 2.5rem auto 0;
}
.azg-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
}
.azg-faq-q {
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.azg-faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: #2563eb;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.azg-faq-item.open .azg-faq-q::after { transform: rotate(45deg); }
.azg-faq-a {
    display: none;
    padding: 0 1.5rem 1.1rem;
    color: #4b5563;
    line-height: 1.75;
    border-top: 1px solid #f3f4f6;
}
.azg-faq-item.open .azg-faq-a { display: block; }

/* CTA */
.azg-cta {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
}
.azg-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.azg-cta h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.azg-cta p { color: #93c5fd; font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.azg-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-white {
    display: inline-block;
    background: #ffffff;
    color: #1e40af;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.6);
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Responsive */
@media (max-width: 900px) {
    .azg-features-grid { grid-template-columns: repeat(2, 1fr); }
    .azg-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .azg-steps-grid::before { display: none; }
}
@media (max-width: 768px) {
    .azg-hero-inner { grid-template-columns: 1fr; }
    .azg-hero-visual { display: none; }
    .azg-features-grid { grid-template-columns: 1fr; }
    .azg-strip-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .azg-iframe-container { border-radius: 12px; min-height: 900px; }
    .azg-iframe-container iframe { min-height: 900px; }
}
