/* Extracted from startups.php. Edit here, not in PHP. */

/* ============================================================
   STARTUPS.PHP, Page-specific styles (prefix: st-)
   Design: "Wachstum & Geschwindigkeit"
   ============================================================ */

/* ---------- Hero ---------- */
.st-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2644 55%, #162d4e 100%);
    padding: 5rem 0 4rem;
    overflow: hidden;
    position: relative;
}
.st-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(16,185,129,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.st-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.st-hero-content { position: relative; z-index: 2; }
.st-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.st-hero-eyebrow-dot {
    width: 6px; height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: st-pulse 2s ease-in-out infinite;
}
@keyframes st-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}
.st-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.st-hero h1 .st-h1-accent { color: #10b981; }
.st-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}
.st-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.25rem;
}
.st-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}
.st-trust-chip-icon {
    color: #10b981;
    font-style: normal;
    font-size: 0.85rem;
}
.st-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.st-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(16,185,129,0.35);
}
.st-btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16,185,129,0.45);
}
.st-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.st-btn-ghost:hover {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

/* Growth SVG visual */
.st-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.st-growth-svg {
    width: 100%;
    max-width: 540px;
    filter: drop-shadow(0 20px 60px rgba(16,185,129,0.2));
}

/* ---------- Trust Bar ---------- */
.st-trust-bar {
    background: #1e3a5f;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
}
.st-trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.st-trust-bar-stat { text-align: center; }
.st-trust-bar-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}
.st-trust-bar-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.3rem;
    white-space: nowrap;
}

/* ---------- Shared section styles ---------- */
.st-section { padding: 5rem 0; }
.st-section-light { background: #f8fafc; }
.st-section-white { background: #fff; }
.st-section-navy { background: #1e3a5f; }
.st-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.st-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 0.75rem;
}
.st-section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #1f2937;
    line-height: 1.25;
    margin-bottom: 1rem;
}
.st-section-title-white {
    color: #ffffff;
}
.st-section-sub {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 620px;
}
.st-section-sub-white { color: rgba(255,255,255,0.75); }
.st-section-header { margin-bottom: 3.5rem; }
.st-section-header-centered {
    text-align: center;
    margin-bottom: 3.5rem;
}
.st-section-header-centered .st-section-sub { margin: 0 auto; }

/* ---------- Problems Grid ---------- */
.st-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}
.st-problem-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid #10b981;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.st-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.st-problem-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.st-problem-icon svg { width: 24px; height: 24px; }
.st-problem-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}
.st-problem-desc {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.st-problem-solution {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: #f0fdf4;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: #065f46;
    font-weight: 500;
    line-height: 1.5;
}
.st-problem-solution-icon { flex-shrink: 0; color: #10b981; margin-top: 1px; }

/* ---------- Services Grid ---------- */
.st-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 1.75rem;
}
.st-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2rem 1.75rem;
    border: 1.5px solid #e5e7eb;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.st-service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.st-service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 40px rgba(37,99,235,0.1);
    transform: translateY(-3px);
}
.st-service-card:hover::after { transform: scaleX(1); }
.st-service-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.st-service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}
.st-service-desc {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.st-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.st-service-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 50px;
    padding: 0.25rem 0.7rem;
}

/* ---------- Sonderthemen (Navy) ---------- */
.st-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.st-topic-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: background 0.2s, border-color 0.2s;
}
.st-topic-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(16,185,129,0.4);
}
.st-topic-badge {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(16,185,129,0.2);
    color: #10b981;
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
}
.st-topic-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}
.st-topic-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}
.st-topic-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #10b981;
    text-decoration: none;
    margin-top: 1.25rem;
    transition: gap 0.2s;
}
.st-topic-cta:hover { gap: 0.7rem; }

/* ---------- Skalierungsplan ---------- */
.st-scale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
}
.st-scale-phase {
    padding: 2.25rem 1.75rem;
    border-right: 1.5px solid #e5e7eb;
    position: relative;
    background: #fff;
    transition: background 0.2s;
}
.st-scale-phase:last-child { border-right: none; }
.st-scale-phase:hover { background: #f0fdf4; }
.st-scale-phase-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 0.5rem;
}
.st-scale-phase-range {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}
.st-scale-phase-sub {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
}
.st-scale-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.st-scale-list li {
    font-size: 0.88rem;
    color: #374151;
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}
.st-scale-list li::before {
    content: '→';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---------- Process ---------- */
.st-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}
.st-process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 5%;
    width: 90%; height: 2px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    opacity: 0.2;
}
.st-process-step { text-align: center; position: relative; }
.st-process-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.st-process-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
}
.st-process-time {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    background: #ecfdf5;
    border-radius: 50px;
    padding: 0.2rem 0.65rem;
    margin-bottom: 0.75rem;
}
.st-process-desc {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.65;
}

/* ---------- FAQ ---------- */
.st-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
}
.st-faq-item {
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}
.st-faq-item.active { border-color: #2563eb; }
.st-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    transition: color 0.2s;
}
.st-faq-item.active .st-faq-question { color: #2563eb; }
.st-faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: #6b7280;
    transition: background 0.2s, color 0.2s, transform 0.3s;
}
.st-faq-item.active .st-faq-icon {
    background: #2563eb;
    color: #fff;
    transform: rotate(45deg);
}
.st-faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}
.st-faq-item.active .st-faq-answer { display: block; }
.st-faq-answer p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}
.st-faq-answer p + p { margin-top: 0.75rem; }

/* ---------- CTA Section ---------- */
.st-cta {
    background: linear-gradient(135deg, #059669, #065f46);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.st-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.st-cta-inner { position: relative; z-index: 2; }
.st-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.st-cta-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.5rem;
    line-height: 1.65;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.st-cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.st-btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #059669;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.95rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.st-btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.st-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    text-decoration: none;
    transition: border-color 0.2s;
}
.st-btn-cta-outline:hover { border-color: rgba(255,255,255,0.9); }

/* ---------- Internal links row ---------- */
.st-related-links {
    background: #f8fafc;
    padding: 2.5rem 0;
    border-top: 1px solid #e5e7eb;
}
.st-related-links-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.st-related-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}
.st-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    padding: 0.4rem 1rem;
    transition: background 0.2s, border-color 0.2s;
}
.st-related-link:hover {
    background: #dbeafe;
    border-color: #93c5fd;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .st-hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .st-growth-svg { max-width: 380px; }
    .st-scale-grid { grid-template-columns: 1fr 1fr; }
    .st-scale-phase { border-right: none; border-bottom: 1.5px solid #e5e7eb; }
    .st-scale-phase:last-child { border-bottom: none; }
    .st-process-steps::before { display: none; }
}
@media (max-width: 600px) {
    .st-hero { padding: 3.5rem 0 3rem; }
    .st-scale-grid { grid-template-columns: 1fr; }
    .st-process-steps { gap: 1.5rem; }
    .st-trust-bar-inner { gap: 1rem; }
    .st-trust-bar-number { font-size: 1.3rem; }
    .st-services-grid { grid-template-columns: 1fr; }
    .st-topics-grid { grid-template-columns: 1fr; }
}
